Files
anomalyco_opencode/packages/enterprise/tsconfig.json
T
2026-08-07 15:34:36 -04:00

22 lines
512 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"noEmit": true,
"strict": true,
"types": ["@cloudflare/workers-types", "vite/client", "bun"],
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"]
}
},
"references": [{ "path": "../core" }]
}