-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.forge.json
More file actions
46 lines (46 loc) · 953 Bytes
/
tsconfig.forge.json
File metadata and controls
46 lines (46 loc) · 953 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
42
43
44
45
46
{
"compilerOptions": {
"baseUrl": ".",
"moduleResolution": "node",
"target": "ESNext",
"module": "esnext",
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"experimentalDecorators": true,
"rootDir": ".",
"sourceMap": false,
"listFiles": false,
"newLine": "LF",
"noEmitOnError": true,
"strictNullChecks": false,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react",
"paths": {
"@/*": [
"src/*"
]
},
"types": [
"@types/wicg-file-system-access",
"node",
"offscreencanvas",
],
"lib": [
"ESNext",
"dom",
"WebWorker"
],
"outDir": "dist",
},
"include": [
"src/apps/forge/**/*.ts",
"src/apps/forge/**/*.tsx",
"src/apps/common/**/*.ts",
"src/apps/common/**/*.tsx",
"src/types",
"src/index.d.ts"
],
"exclude": ["node_modules", "src/**/*.spec.ts"]
}