| 123456789101112131415161718192021222324252627 |
- {
- "$schema": "https://json.schemastore.org/tsconfig",
- "compilerOptions": {
- "customConditions": [
- "workers"
- ],
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "jsx": "preserve",
- "jsxImportSource": "solid-js",
- "allowJs": true,
- "strict": true,
- "noEmit": true,
- "types": [
- "vinxi/types/client"
- ],
- "isolatedModules": true,
- "paths": {
- "~/*": [
- "./src/*"
- ]
- }
- }
- }
|