mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
* chore(input): remove interface .d.ts file, move to .ts file * refactor(angular): start working on providers, etc * chore(angular/dependencies): update deps for angular demo
23 lines
505 B
JSON
23 lines
505 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["dom", "es2015"],
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"removeComments": false,
|
|
"sourceMap": true,
|
|
"target": "es2015"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"demos/src/**/*.ts"
|
|
],
|
|
"compileOnSave": false,
|
|
"buildOnSave": false
|
|
}
|