summaryrefslogtreecommitdiffhomepage
path: root/packages/tauri/tsconfig.json
blob: e7f5c5c27984fca628f71e1cbf89218f015d0e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "compilerOptions": {
    "target": "ESNext",
    "module": "ESNext",
    "skipLibCheck": true,
    "moduleResolution": "bundler",
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "jsx": "preserve",
    "jsxImportSource": "solid-js",
    "allowJs": true,
    "strict": true,
    "isolatedModules": true,
    "noEmit": true,
    "emitDeclarationOnly": false,
    "outDir": "node_modules/.ts-dist"
  },
  "references": [{ "path": "../desktop" }],
  "include": ["src"]
}