mirror of
https://github.com/YuzuZensai/VRC-Circle.git
synced 2026-09-13 19:08:52 +00:00
24 lines
635 B
JSON
24 lines
635 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"composite": true,
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
||
|
|
"types": ["node"],
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": { "@renderer/*": ["src/renderer/src/*"] }
|
||
|
|
},
|
||
|
|
"include": ["src/renderer/src", "src/shared", "src/preload/index.d.ts"]
|
||
|
|
}
|