mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Short description of what this resolves: Allows our e2e tests to run on a Windows machine Changes proposed in this pull request: Normalize paths using path.join() Add typeRoots to the root tsconfig file Change the spawnedCommand based on the OS Fixes: #11551
32 lines
720 B
JSON
32 lines
720 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"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
|
|
}
|
|
} |