/ concept-collection / benchcompress
concept-collection / benchcompress
benchcompress / web-ui / tsconfig.node.json
24 lines · 576 BBlameHistoryRaw
1{
2 "compilerOptions": {
3 "incremental": true,
4 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
5 "target": "ES2022",
6 "lib": ["ES2023"],
7 "module": "ESNext",
8 "skipLibCheck": true,
10 /* Bundler mode */
11 "moduleResolution": "bundler",
12 "allowImportingTsExtensions": true,
13 "isolatedModules": true,
14 "moduleDetection": "force",
15 "noEmit": true,
17 /* Linting */
18 "strict": true,
19 "noUnusedLocals": true,
20 "noUnusedParameters": true,
21 "noFallthroughCasesInSwitch": true
22 },
23 "include": ["vite.config.ts"]