forked from tensorflow/tensorboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
27 lines (27 loc) · 846 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"exactOptionalPropertyTypes": true,
"experimentalDecorators": true,
"importHelpers": true,
"inlineSourceMap": true,
"lib": ["dom", "es2021", "dom.iterable"],
"moduleResolution": "node",
"module": "es2022",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"skipLibCheck": true,
"strict": true,
// Don't scan the node_modules/@types folder for ambient types.
// This would force us to have all the types in the dependencies of
// each library.
// Instead we'll be explicit about declaring ambient type dependencies
// using the ///<reference types=""/> syntax.
"types": []
},
"angularCompilerOptions": {
"strictTemplates": true
}
}