-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (26 loc) · 832 Bytes
/
tsconfig.json
File metadata and controls
30 lines (26 loc) · 832 Bytes
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
{
"compilerOptions": {
"target": "ES2020",
"module": "es2022",
"lib": ["webworker", "ES2020", "ES2021", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"allowJs": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"outDir": "./public/"
},
"compileOnSave": true,
"include": ["src/**/*.ts", "src/**/*.js", "src/sw/js/lib/db.min.js", "src/sw/js/lib/chart.min.js", "src/web/js/lib/htmf.js", "docs/sw.js", "docs/test-framework.js"],
"exclude": [
"node_modules", "src/**/*spec.ts"
]
}