33 lines
844 B
JSON
33 lines
844 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext",
|
|
"WebWorker"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vitest",
|
|
"vite/client",
|
|
// Currently AudioWorkletProcessor type is missing, we need to add it manually through @types/audioworklet
|
|
// https://github.com/microsoft/TypeScript/issues/28308#issuecomment-1512509870
|
|
"@types/audioworklet",
|
|
"unplugin-vue-router/client"
|
|
],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|