/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "incremental": false, 4 "target": "es2016", 5 "jsx": "preserve", 6 "lib": [ 7 "DOM", 8 "ESNext" 9 ], 10 "baseUrl": ".", 11 "module": "ESNext", 12 "moduleResolution": "node", 13 "paths": { 14 "~/*": [ 15 "src/*" 16 ] 17 }, 18 "resolveJsonModule": true, 19 "types": [ 20 "vite/client", 21 "chrome", 22 "webaudioapi", 23 ], 24 "strict": true, 25 "noUnusedLocals": true, 26 "esModuleInterop": true, 27 "forceConsistentCasingInFileNames": true, 28 "skipLibCheck": true 29 }, 30 "exclude": [ 31 "dist", 32 "node_modules", 33 "docs" 34 ] 35 }