-
Notifications
You must be signed in to change notification settings - Fork 27
/
tsconfig.json
38 lines (31 loc) · 892 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
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Language and Environment */
"target": "es2017",
"lib": ["dom", "webworker"],
/* Modules */
"module": "es2020",
"moduleResolution": "node",
/* JavaScript Support */
"allowJs": true,
"checkJs": true,
/* Emit */
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist",
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
/* Completeness */
"skipLibCheck": true
},
"include": ["src/**/*.ts", "src/**/*.js"],
"exclude": [
// node-worker.js is currently excluded from checking because it relies
// on the .d.ts files that only exist after the initial typecheck is complete.
"src/node-worker.js"
]
}