Files
ionic-framework/packages/angular/tsconfig.json
Ken Sodemann d9d0150b4c feat(e2e): create basic e2e test runner
This is mostly PoC code that shows how this can be done. This will grow
into the actual test runner.
2017-10-26 21:17:57 -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
}
}