mirror of
https://github.com/different-ai/openwork
synced 2026-05-15 03:26:24 +02:00
20 lines
467 B
JSON
20 lines
467 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"types": ["bun-types", "node"]
|
|
},
|
|
"include": ["src"]
|
|
}
|