-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.json
More file actions
53 lines (53 loc) · 1.22 KB
/
tsconfig.json
File metadata and controls
53 lines (53 loc) · 1.22 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
53
{
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"alwaysStrict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"sourceMap": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"preserveWatchOutput": true,
"allowJs": true,
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"jsx": "preserve",
"noImplicitOverride": true,
"strictPropertyInitialization": true,
"downlevelIteration": true,
"noPropertyAccessFromIndexSignature": true,
"module": "esnext",
"target": "es2021",
"lib": ["esnext", "dom", "dom.iterable"],
"moduleResolution": "node",
"rootDir": ".",
"baseUrl": ".",
"paths": {
"~/*": ["./*"]
}
},
"include": [
"./**/*.ts",
"./**/*.tsx",
"./examples/**/*.js",
"./examples/**/*.ts"
],
"exclude": [
"bazel-stratis3",
"bazel-out",
"external",
"bazel-testlogs",
"node_modules",
"build",
"target",
"third_party",
"__pycache__"
]
}