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.
20 lines
586 B
JSON
20 lines
586 B
JSON
{
|
|
"compilerOptions": {
|
|
"stableTypeOrdering": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"experimentalDecorators": true,
|
|
"outDir": "./build",
|
|
"typeRoots": [],
|
|
"rootDir": ".",
|
|
"target": "es2020",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"noEmitOnError": false,
|
|
"stripInternal": false,
|
|
"lib": ["es5", "dom", "es2015.collection", "es2015.iterable", "es2015.promise", "es2022.object"]
|
|
},
|
|
"files": ["./type.test.ts", "./node_modules/zone.js/zone.ts"]
|
|
}
|