web/tsconfig.node.json
bon 8ae956dee8
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
init (pfp and unformatted text)
2025-05-17 02:15:57 +03:00

22 lines
No EOL
478 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["vite.config.ts"]
}