summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop-electron/tsconfig.json
blob: 9637fe03ddc1dcc32bf700ddd89640b7da42d92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "compilerOptions": {
    "target": "ESNext",
    "module": "ESNext",
    "skipLibCheck": true,
    "moduleResolution": "bundler",
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "jsx": "preserve",
    "jsxImportSource": "solid-js",
    "allowJs": true,
    "resolveJsonModule": true,
    "strict": true,
    "isolatedModules": true,
    "noEmit": true,
    "emitDeclarationOnly": false,
    "outDir": "node_modules/.ts-dist",
    "types": ["vite/client", "node", "electron"]
  },
  "references": [{ "path": "../app" }],
  "include": ["src", "package.json"],
  "exclude": ["src/**/*.test.ts"]
}