opencode / packages /console /app /tsconfig.json
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
251a574 verified
Raw
History Blame Contribute Delete
513 Bytes
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"noEmit": true,
"types": ["vite/client", "@webgpu/types", "bun"],
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"]
}
}
}