-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
47 lines (45 loc) · 1.06 KB
/
tsconfig.json
File metadata and controls
47 lines (45 loc) · 1.06 KB
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
47
{
"compilerOptions": {
"baseUrl": ".",
"lib": ["ESNext", "DOM.Iterable", "DOM"],
"jsx": "react-jsx",
"target": "ESNext",
"useDefineForClassFields": false,
"noEmit": false,
"skipLibCheck": true,
/* modules */
"module": "ESNext",
"isolatedModules": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "bundler",
/* type checking */
"strict": false,
"allowJs": true,
"noUnusedLocals": false,
"preserveConstEnums": true,
"emitDeclarationOnly": true,
"declaration": true
},
"exclude": [
"apps/**/node_modules",
"apps/**/dist",
"apps/**/public",
"apps/build/bin",
"apps/cli/**/*",
"apps/**/lib",
"apps/**/es",
"packages/**/node_modules",
"packages/**/dist",
"packages/**/public",
"packages/**/lib",
"packages/**/es"
],
"extends": "./tsconfig.paths.json",
"include": ["packages/**/*", "apps/**/*", "playwright.config.ts", "vitest.config.mts"],
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}