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.
16 lines
328 B
JSON
16 lines
328 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"target": "ES2021",
|
|
"types": ["node"],
|
|
"lib": ["es2021"],
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitOverride": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"declaration": true,
|
|
"sourceMap": true
|
|
}
|
|
}
|