tsconfig.json 589 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "composite": true,
  5. "target": "ESNext",
  6. "module": "ESNext",
  7. "skipLibCheck": true,
  8. "moduleResolution": "bundler",
  9. "allowSyntheticDefaultImports": true,
  10. "esModuleInterop": true,
  11. "jsx": "preserve",
  12. "jsxImportSource": "solid-js",
  13. "allowJs": true,
  14. "strict": true,
  15. "noEmit": false,
  16. "emitDeclarationOnly": true,
  17. "outDir": "node_modules/.ts-dist",
  18. "isolatedModules": true,
  19. "paths": {
  20. "@/*": ["./src/*"]
  21. }
  22. },
  23. "exclude": ["dist", "ts-dist"]
  24. }