forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig-legacy.json
More file actions
33 lines (33 loc) · 1.09 KB
/
tsconfig-legacy.json
File metadata and controls
33 lines (33 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"extends": "./bazel-tsconfig-test.json",
"compilerOptions": {
"outDir": "../dist/legacy-test-out",
"declaration": false,
// For the legacy tests, we use ES2016 so that ZoneJS can work with async/await.
"target": "es2016",
"paths": {
"@angular/*": ["./*"]
},
"types": ["jasmine"],
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"include": ["**/*.spec.ts", "dev-mode-types.d.ts", "../node_modules/zone.js/zone.d.ts"],
"exclude": [
"**/*.e2e.spec.ts",
"./cdk/schematics/**/*",
"./material/schematics/**/*",
"./components-examples/**/*",
"./google-maps/schematics/**/*",
"./youtube-player/schematics/**/*",
"./material-moment-adapter/schematics/**/*",
"./material-luxon-adapter/schematics/**/*",
"./material-date-fns-adapter/schematics/**/*",
"./material/core/theming/tests/**/*"
],
"angularCompilerOptions": {
// This is needed so that test components are not AOT compiled. Ngtsc will
// not find an associated module for test components and error out.
"compileNonExportedClasses": false
}
}