Skip to content
Snippets Groups Projects
tsconfig.json 607 B
Newer Older
insert's avatar
insert committed
{
  "compilerOptions": {
    "target": "ESNext",
insert's avatar
insert committed
    "lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"],
insert's avatar
insert committed
    "allowJs": false,
    "skipLibCheck": true,
    "esModuleInterop": false,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "ESNext",
    "moduleResolution": "Node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "preserve",
    "jsxFactory": "h",
insert's avatar
insert committed
    "jsxFragmentFactory": "Fragment",
    "types": [
      "vite-plugin-pwa/client"
    ]
insert's avatar
insert committed
  },
insert's avatar
insert committed
  "include": ["src", "ui/ui.tsx"]
insert's avatar
insert committed
}