Last active
September 4, 2018 04:58
-
-
Save JefCurtis/c6035c2934b2b1c8128a8ba0a8207fd3 to your computer and use it in GitHub Desktop.
Gmail add-on: TypeScript configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| "outDir": "./build", | |
| "baseUrl": ".", | |
| "noImplicitAny": true, | |
| "sourceMap": true, | |
| "strictNullChecks": false, | |
| "noImplicitThis": true, | |
| "noEmitOnError": true, | |
| "target": "ES5", | |
| "lib": ["dom", "es6", "scripthost", "es2017"] | |
| }, | |
| "include": ["src/**/*"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment