Skip to content

Instantly share code, notes, and snippets.

@jayserdny
Created December 31, 2017 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jayserdny/935870bcc0bec58525d95aba18b214e9 to your computer and use it in GitHub Desktop.
Save jayserdny/935870bcc0bec58525d95aba18b214e9 to your computer and use it in GitHub Desktop.
tsconfig.json for api
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
"skipLibCheck": true,
"stripInternal": true,
"noImplicitAny": false,
"types": [
"@types/meteor"
]
},
"exclude": [
"node_modules"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment