mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"assumeChangesOnlyAffectDirectDependencies": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "Fragment",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"es2017",
|
|
"es2020",
|
|
"es2021",
|
|
"esnext"
|
|
],
|
|
"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"],
|
|
"@global/*": ["src/global/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
},
|
|
"include": [
|
|
"src",
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|