| 1234567891011121314151617181920212223 |
- {
- "$schema": "https://json.schemastore.org/tsconfig",
- "extends": "@tsconfig/bun/tsconfig.json",
- "compilerOptions": {
- "jsx": "preserve",
- "jsxImportSource": "solid-js",
- "types": [
- "vite/client"
- ],
- "lib": [
- "DOM",
- "DOM.Iterable",
- ],
- "customConditions": [
- "development"
- ],
- "paths": {
- "@/*": [
- "./src/*"
- ]
- }
- }
- }
|