forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
52 lines (52 loc) · 1.3 KB
/
tsconfig.json
File metadata and controls
52 lines (52 loc) · 1.3 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "../",
"outDir": "bazel-out/darwin-fastbuild/bin",
"sourceMap": true,
"declaration": true,
"strict": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"importHelpers": true,
"target": "es2020",
"lib": ["es2020", "dom", "dom.iterable"],
"typeRoots": [
"./devtools/node_modules/@types",
],
"types": [
"angular",
"jasmine",
"node"
],
"paths": {
"@angular/*": [
"./packages/*",
"./dist/bin/packages/*"
],
"ng-devtools": [
"./devtools/projects/ng-devtools/src/public-api.ts",
],
"ng-devtools-backend": [
"./devtools/projects/ng-devtools-backend/src/public-api.ts",
],
"protocol": [
"./devtools/projects/protocol/src/public-api.ts",
],
"shared-utils": [
"./devtools/projects/shared-utils/src/public-api.ts",
]
},
},
"angularCompilerOptions": {
"strictTemplates": true,
"strictInjectionParameters": true,
"unusedStandaloneImports": "error"
}
}