mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
9cf7b44f7c
Those options are enabled by default, they don't need to be explicit.
19 lines
435 B
JSON
19 lines
435 B
JSON
{
|
|
"angularCompilerOptions": {
|
|
"annotationsAs": "static fields",
|
|
"annotateForClosureCompiler": true
|
|
},
|
|
"compilerOptions": {
|
|
"module": "es2015",
|
|
"moduleResolution": "bundler",
|
|
"target": "es2022",
|
|
"sourceMap": false,
|
|
"experimentalDecorators": true,
|
|
"outDir": "built",
|
|
"rootDir": ".",
|
|
"declaration": true,
|
|
"types": []
|
|
},
|
|
"exclude": ["vendor", "node_modules", "built", "dist", "e2e"]
|
|
}
|