mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
This is mostly PoC code that shows how this can be done. This will grow into the actual test runner.
34 lines
763 B
JSON
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
|
|
}
|
|
}
|