-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
28 lines (28 loc) · 906 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"baseUrl": ".",
"outDir": "./vanilla",
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"paths": {
"main/*": ["./electron/main/*"],
"src/*": ["./src/*"],
"project/*": ["./*"]
}
},
"include": ["src/*", ".electron-vite/*", "config/*", "scripts/*", "electron/**/*", "electron/**/**/*"],
"exclude": ["node_modules"]
}