webgpu-pt

monte carlo path tracer
Contents

tsconfig.json

626 B
 1{
 2  "compilerOptions": {
 3    "target": "ES2022",
 4    "useDefineForClassFields": true,
 5    "module": "ESNext",
 6    "lib": ["ES2022", "DOM", "DOM.Iterable"],
 7    "skipLibCheck": true,
 8
 9    /* Bundler mode */
10    "moduleResolution": "bundler",
11    "allowImportingTsExtensions": true,
12    "isolatedModules": true,
13    "moduleDetection": "force",
14    "noEmit": true,
15
16    /* Linting */
17    "strict": true,
18    "noUnusedLocals": true,
19    "noUnusedParameters": true,
20    "noFallthroughCasesInSwitch": true,
21    "noUncheckedSideEffectImports": true,
22    "types": ["@webgpu/types", "vite-plugin-glsl/ext"]
23  },
24  "include": ["src"]
25}