mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
859ca504f8
Updates the platform-server integration test to rely on the v13 partial compilation packages. This involves setting up the Babel linker plugin. This is a great addition for coverage of the Babel linker plugin. PR Close #43431
25 lines
522 B
JSON
25 lines
522 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
// TODO(i): strictNullChecks should turned on but are temporarily disabled due to #15432
|
|
"strictNullChecks": false,
|
|
"target": "es2020",
|
|
"noImplicitAny": false,
|
|
"sourceMap": false,
|
|
"experimentalDecorators": true,
|
|
"outDir": "built",
|
|
"rootDir": ".",
|
|
"declaration": true,
|
|
"typeRoots": ["node_modules/@types"]
|
|
},
|
|
|
|
"exclude": [
|
|
"vendor",
|
|
"node_modules",
|
|
"built",
|
|
"dist",
|
|
"e2e"
|
|
]
|
|
}
|