Files
ionic-framework/core/tsconfig.json
2025-12-17 18:15:04 -08:00

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"
]
}