forked from sbbqq/LibertyHosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
42 lines (42 loc) · 944 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"outDir": "./dist",
"module": "ES2020",
"target": "ES2020",
"moduleResolution": "node",
"lib": [
"ES2020",
"WebWorker"
],
"types": [
"jest",
"service-worker-mock",
"@cloudflare/workers-types"
],
"allowJs": false,
"alwaysStrict": true,
"strict": true,
"preserveConstEnums": true,
"sourceMap": true,
"esModuleInterop": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"declaration": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true
},
"include": [
"src/*.ts",
"src/**/*.ts",
"test/*.ts",
"node_modules/@cloudflare/workers-types/index.d.ts"
],
"exclude": [
"node_modules/",
"dist/"
]
}