Skip to content

Instantly share code, notes, and snippets.

@JefCurtis
Last active September 4, 2018 04:58
Show Gist options
  • Select an option

  • Save JefCurtis/c6035c2934b2b1c8128a8ba0a8207fd3 to your computer and use it in GitHub Desktop.

Select an option

Save JefCurtis/c6035c2934b2b1c8128a8ba0a8207fd3 to your computer and use it in GitHub Desktop.
Gmail add-on: TypeScript configuration
{
"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