Files
ionic-framework/packages/ionic-angular/tsconfig.json
2017-06-21 09:33:06 -05:00

34 lines
763 B
JSON

{
"compilerOptions": {
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["dom", "es2015"],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"removeComments": false,
"sourceMap": true,
"target": "es2015",
"typeRoots": [
"./node_modules/@types"
],
"types": ["jasmine", "systemjs"]
},
"include": [
"src/**/*.ts",
"demos/src/**/*.ts"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
},
"angularCompilerOptions": {
"annotationsAs": "static fields",
"annotateForClosureCompiler": true
}
}