tsconfig.node.json
1{
2 "extends": "@tsconfig/strictest/tsconfig.json",
3 "compilerOptions": {
4 "target": "ES2022",
5 "lib": ["ES2023"],
6 "types": ["node"],
7 "moduleResolution": "bundler",
8 "allowImportingTsExtensions": true,
9 "moduleDetection": "force",
10 "noEmit": true,
11 "verbatimModuleSyntax": true,
12 "noPropertyAccessFromIndexSignature": false
13 },
14 "include": ["vite.config.ts", "codegen.ts"]
15}