-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 802 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 802 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"rootDir": ".",
"declaration": true,
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"paths": {
"@server/*": ["./server/*"],
"@client/*": ["./client/*"],
"@shared/*": ["./shared/*"]
}
},
"include": ["shared/**/*.ts", "server/**/*.ts", "client/**/*.ts", "client/**/*.tsx", "electron/**/*.ts", "e2e/**/*.ts", "playwright.config.ts", "scripts/**/*.ts"],
"exclude": ["node_modules", "dist", "dist-electron"]
}