A photo manager for VRChat.
1{
2 "compilerOptions": {
3 "target": "ES2020",
4 "useDefineForClassFields": true,
5 "module": "ESNext",
6 "lib": ["ES2020", "DOM", "DOM.Iterable"],
7 "skipLibCheck": true,
8
9 /* Bundler mode */
10 "moduleResolution": "bundler",
11 "allowImportingTsExtensions": true,
12 "resolveJsonModule": true,
13 "isolatedModules": true,
14 "noEmit": true,
15 "jsx": "preserve",
16 "jsxImportSource": "solid-js",
17
18 /* Linting */
19 "strict": true,
20 "noUnusedLocals": true,
21 "noUnusedParameters": true,
22 "noFallthroughCasesInSwitch": true
23 },
24 "include": ["src"],
25 "references": [{ "path": "./tsconfig.node.json" }]
26}