Skip to content

Instantly share code, notes, and snippets.

@jayserdny
Last active December 31, 2017 01:43
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/1e3e392052d08bd78c191bcb7169482c to your computer and use it in GitHub Desktop.
Save jayserdny/1e3e392052d08bd78c191bcb7169482c to your computer and use it in GitHub Desktop.
Tsconfig.json for Ionic Meteor
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"lib": [
"dom",
"es2015"
],
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
"skipLibCheck": true,
"stripInternal": true,
"noImplicitAny": false,
"types": [
"@types/meteor"
]
},
"include": [
"src/**/*.ts",
"src/api/**/*.ts"
],
"exclude": [
"node_modules",
"src/**/*.spec.ts",
"src/**/__tests__/*.ts",
"src/api/node_modules",
"src/api"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment