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)
23 lines
503 B
JSON
23 lines
503 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"lib": ["ES2022", "dom"],
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "Fragment",
|
|
"types": ["node"],
|
|
"paths": {
|
|
"@angular/*": ["../../packages/*/index"]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true
|
|
}
|
|
}
|