mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
26 lines
593 B
JSON
26 lines
593 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["dom", "es2015"],
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"removeComments": false,
|
|
"sourceMap": true,
|
|
"target": "es2015"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"compileOnSave": false,
|
|
"buildOnSave": false
|
|
}
|