mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-11 19:49:18 +08:00
Issue number: resolves #29991 Co-authored-by: Brandy Smith <6577830+brandyscarney@users.noreply.github.com>
34 lines
808 B
JSON
34 lines
808 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"allowUnreachableCode": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"dom",
|
|
"es2020",
|
|
"dom.iterable"
|
|
],
|
|
"importHelpers": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"declarationDir": "dist/types",
|
|
"removeComments": false,
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"jsx": "react-jsx",
|
|
"target": "es2020",
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"compileOnSave": false,
|
|
"buildOnSave": false
|
|
}
|