mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"angularCompilerOptions": {
|
|
"annotateForClosureCompiler": true,
|
|
"strictMetadataEmit": true,
|
|
"skipTemplateCodegen": true,
|
|
"fullTemplateTypeCheck": false,
|
|
"enableResourceInlining": true,
|
|
"compilationMode": "partial"
|
|
},
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["dom", "es2017"],
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "build/es2015",
|
|
"pretty": true,
|
|
"removeComments": false,
|
|
"importHelpers": true,
|
|
"rootDir": "src",
|
|
"strictPropertyInitialization": false,
|
|
"target": "es2015",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@ionic/core/hydrate": ["../core/hydrate"],
|
|
"@ionic/core": ["../core"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-eslint-language-service"
|
|
}
|
|
]
|
|
},
|
|
"exclude": ["node_modules", "src/schematics"],
|
|
"files": ["src/index.ts"]
|
|
}
|