mirror of
https://github.com/YuzuZensai/VRC-Circle.git
synced 2026-09-13 10:58:59 +00:00
21 lines
542 B
JSON
21 lines
542 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"composite": true,
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"lib": ["ES2023"],
|
||
|
|
"types": ["node", "electron-vite/node"],
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true
|
||
|
|
},
|
||
|
|
"include": ["src/main", "src/preload", "src/shared", "electron.vite.config.ts"]
|
||
|
|
}
|