mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
33 lines
844 B
JSON
33 lines
844 B
JSON
{
|
|
"angularCompilerOptions": {
|
|
"fullTemplateTypeCheck": true,
|
|
"strictMetadataEmit" : true
|
|
},
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"lib": ["dom", "es2017"],
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"pretty": true,
|
|
"removeComments": false,
|
|
"rootDir": "src",
|
|
"strictPropertyInitialization": false,
|
|
"target": "es5"
|
|
},
|
|
"exclude": ["node_modules", "src/schematics"],
|
|
"files": ["src/index.ts"]
|
|
}
|