-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 888 Bytes
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 888 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
"baseUrl": ".",
"moduleResolution": "node",
"target": "ESNext",
"module": "commonjs",
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"experimentalDecorators": true,
"rootDir": ".",
"sourceMap": false,
"listFiles": true,
"newLine": "LF",
"noEmitOnError": true,
"strictNullChecks": false,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true,
"jsx": "react",
"paths": {
"@/*": [
"src/*"
]
},
"types": [
"@types/wicg-file-system-access",
"user-agent-data-types",
"node",
"offscreencanvas",
],
"lib": [
"ESNext",
"dom",
"WebWorker"
],
"outDir": "dist",
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/index.d.ts"],
"exclude": ["node_modules", "src/**/*.spec.ts"]
}