zerobyte/tsconfig.json
Nicolas Meienberger 4a218fd54b
fix: ci
2026-05-07 17:07:40 +02:00

22 lines
565 B
JSON

{
"include": ["app/**/*", "e2e/**/*", "playwright.config.ts"],
"compilerOptions": {
"plugins": [{ "name": "@effect/language-service" }],
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"types": ["bun", "node", "vite/client"],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"rootDirs": [".", "./.react-router/types"],
"paths": {
"~/*": ["./app/*"]
},
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true
}
}