-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.lib.json
More file actions
43 lines (39 loc) · 991 Bytes
/
Copy pathtsconfig.lib.json
File metadata and controls
43 lines (39 loc) · 991 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
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2023", "DOM", "DOM.Iterable", "WebWorker"],
"module": "ESNext",
"skipLibCheck": true,
/* Declaration emit */
"declaration": true,
"emitDeclarationOnly": true,
"declarationDir": "dist",
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"isolatedModules": true,
"moduleDetection": "force",
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
/* Paths */
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src/index.ts",
"src/lib/cad-engine/**/*.ts",
"src/hooks/**/*.ts",
"src/components/viewport/**/*.tsx",
"src/lib/store/**/*.ts",
"src/lib/utils/**/*.ts",
"src/types/**/*.ts",
"src/lib/layer-identification/**/*.ts"
]
}