mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
8d23b95119
Those options are enabled by default, they don't need to be explicit.
(cherry picked from commit 9cf7b44f7c)
17 lines
438 B
JSON
17 lines
438 B
JSON
{
|
|
"compilerOptions": {
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"experimentalDecorators": true,
|
|
"module": "es2022",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist/out-tsc",
|
|
"rootDir": ".",
|
|
"target": "es2020",
|
|
"lib": ["ES2020", "dom"],
|
|
"types": []
|
|
},
|
|
"files": ["include-all.ts", "node_modules/@types/jasmine/index.d.ts"]
|
|
}
|