mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
cb8a741f14
Changes to SSR doc PR Close #52398
22 lines
495 B
JSON
22 lines
495 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
/* We need to keep the metadata to support JIT compilation. */
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [ "es2015", "dom" ],
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"suppressImplicitAnyIndexErrors": true
|
|
},
|
|
"compileOnSave": true,
|
|
"exclude": [
|
|
"**/*-aot.ts",
|
|
"node_modules/",
|
|
"ssr/"
|
|
]
|
|
}
|