mirror of https://github.com/waku-org/waku-lab.git
32 lines
686 B
JSON
32 lines
686 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES2022",
|
|
"lib": ["ES2023"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Add these options */
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
|
|
/* Emission settings */
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|