mirror of
https://github.com/google/nomulus
synced 2026-08-15 11:46:08 +00:00
- node to the most recent LTS version - angular dependencies to 22.x rather than 21.x - eslint to 10.7 (the old version was quite old) Deployed to alpha and everything looks good. The Typescript changes were all done by the migration (nothing manually). G.1 numbers 8 and 9
19 lines
492 B
JSON
19 lines
492 B
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/spec",
|
|
"types": ["jasmine"]
|
|
},
|
|
"files": ["src/test.ts", "src/polyfills.ts"],
|
|
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"],
|
|
"angularCompilerOptions": {
|
|
"extendedDiagnostics": {
|
|
"checks": {
|
|
"nullishCoalescingNotNullable": "suppress",
|
|
"optionalChainNotNullable": "suppress"
|
|
}
|
|
}
|
|
}
|
|
}
|