mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
43 lines
950 B
JSON
43 lines
950 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"assumeChangesOnlyAffectDirectDependencies": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"lib": [
|
|
"dom",
|
|
"es2017"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": ".tmp",
|
|
"pretty": true,
|
|
"removeComments": false,
|
|
"target": "es2017",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@utils/*": ["src/utils/*"],
|
|
"@utils/test": ["src/utils/test/utils"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/test/**/*.spec.ts",
|
|
"**/test/**/*.spec.tsx",
|
|
"**/test/**/e2e.ts"
|
|
]
|
|
}
|