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