| 123456789101112131415161718192021222324 |
- {
- "$schema": "https://json.schemastore.org/tsconfig",
- "compilerOptions": {
- "composite": true,
- "target": "ESNext",
- "module": "ESNext",
- "skipLibCheck": true,
- "moduleResolution": "bundler",
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "jsx": "preserve",
- "jsxImportSource": "solid-js",
- "allowJs": true,
- "strict": true,
- "noEmit": false,
- "emitDeclarationOnly": true,
- "outDir": "node_modules/.ts-dist",
- "isolatedModules": true,
- "paths": {
- "@/*": ["./src/*"]
- }
- },
- "exclude": ["dist", "ts-dist"]
- }
|