summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop/tsconfig.json
blob: 47e63cc87ff9767a8f59225ae5af204c5a8c0e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "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"]
  },
  "references": [{ "path": "../app" }],
  "include": ["src", "package.json"]
}