/ tsconfig.node.json
tsconfig.node.json
 1  {
 2    "compilerOptions": {
 3      "target": "esnext",
 4      "module": "esnext",
 5      "jsx": "preserve",
 6      "moduleResolution": "bundler",
 7      "composite": true,
 8      "resolveJsonModule": true,
 9      "esModuleInterop": true,
10      "allowSyntheticDefaultImports": true,
11      "emitDeclarationOnly": true,
12      "allowImportingTsExtensions": true,
13      "paths": {
14        "@/*": ["./src/*"]
15      }
16    },
17    "include": [
18      "src/main",
19      "src/types",
20      "src/preload",
21      "package.json",
22      "vite.config.mts",
23      "buildAssets/builder",
24      "tests/**/*.ts",
25      "tests/**/*.mts",
26      "tests/**/*.spec.ts"
27    ]
28  }