mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-26 08:13:34 +08:00
28 lines
763 B
JSON
28 lines
763 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["dom", "es2020"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist-transpiled",
|
|
"declarationDir": "dist/types",
|
|
"removeComments": false,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"target": "es2017"
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["./__tests__/**", "node_modules", "setupTests.ts"],
|
|
"compileOnSave": false,
|
|
"buildOnSave": false
|
|
}
|