-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 915 Bytes
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 915 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
{
"compilerOptions": {
"target": "ES6",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"allowJs": true,
"module": "esnext",
"moduleResolution": "bundler",
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"outDir": "dist",
"resolveJsonModule": true,
"jsx": "react",
"allowImportingTsExtensions": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@process/*": ["./src/process/*"],
"@renderer/*": ["./src/renderer/*"],
"@worker/*": ["./src/process/worker/*"]
}
},
"include": [
"src/**/*",
"uno.config.ts",
"electron.vite.config.ts",
"playwright.config.ts",
"src/renderer/types.d.ts"
],
"exclude": [
"src/process/services/database/drivers/BunSqliteDriver.ts",
"src/process/services/database/drivers/BunSqliteDriver.bun.test.ts"
]
}