tlsync/tsconfig.json
2025-08-23 13:04:42 +00:00

17 lines
405 B
JSON

{
"extends": "./tsconfig.base.json",
"include": ["src", "scripts", "vite.config.mts"],
"exclude": ["node_modules", "dist", ".tsbuild*"],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"types": ["bun-types", "node"],
"strict": true,
"skipLibCheck": true
}
}