mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-12-19 05:19:42 +08:00
* init ivy support * chore(): angular prerelease * chore: update * updates * angular 8 deps * chore(angular): update sync script * updates * chore(): remove console log * chore(): updates * chore(): update release script * fix(): remove comments * fix(): remove test version * fix(): failing angular test * fix(): failing angular tests * fix(): update ci steps * fix(): fix sync script * chore(): refactor angular proxies * chore(): updates * chore(): updates * chore(): lint * chore(): updates * chore(ssr): check for window * chore(): fix virtual scroll angular tests * chore(): lint * chore(): add server to link * chore(scripts): update release script * chore(): bump version check * style(scripts): spacing
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"angularCompilerOptions": {
|
|
"annotateForClosureCompiler": true,
|
|
"strictMetadataEmit": true,
|
|
"flatModuleOutFile": "core.js",
|
|
"flatModuleId": "@ionic/angular",
|
|
"skipTemplateCodegen": true,
|
|
"fullTemplateTypeCheck": false,
|
|
"enableResourceInlining": true,
|
|
"enableIvy": false
|
|
},
|
|
"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"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "src/schematics"],
|
|
"files": ["src/index.ts"]
|
|
}
|