mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
35 lines
805 B
JSON
35 lines
805 B
JSON
{
|
|
"compilerOptions": {
|
|
"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"
|
|
],
|
|
"exclude": [
|
|
"**/__tests__/**"
|
|
],
|
|
"compileOnSave": false,
|
|
"buildOnSave": false
|
|
}
|