-
Notifications
You must be signed in to change notification settings - Fork 55
/
tsconfig.json
executable file
·54 lines (54 loc) · 1.34 KB
/
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
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
54
{
"compilerOptions": {
"composite": true,
"incremental": true,
"target": "es2019",
"module": "esnext",
"lib": ["ES2020", "ES2015.iterable", "DOM", "DOM.Iterable"],
"declaration": true,
"declarationMap": true,
"sourceMap": false,
"outDir": ".",
"rootDir": "src",
"tsBuildInfoFile": ".tsbuildinfo",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
// TODO(aomarks) Remove when
// https://github.com/material-components/material-web/issues/2715 is fixed.
"skipLibCheck": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true
},
"include": [
"src/**/*.ts",
"src/internal/worker-api.ts",
"src/shared/util.ts"
],
"exclude": [
"src/service-worker",
"src/shared",
"src/typescript-worker",
"src/playground-typescript-worker-entrypoint.ts"
],
"references": [
{
"path": "src/service-worker"
},
{
"path": "src/shared"
},
{
"path": "./tsconfig-typescript-worker.json"
}
]
}