| 12345678910111213141516171819202122 |
- {
- "$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", "bun"],
- "isolatedModules": true,
- "paths": {
- "~/*": ["./src/*"]
- }
- },
- "include": ["*.ts", "src", "../core/src/resource.d.ts"]
- }
|