tsconfig.json 625 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "skipLibCheck": true,
  6. "moduleResolution": "bundler",
  7. "allowSyntheticDefaultImports": true,
  8. "esModuleInterop": true,
  9. "jsx": "preserve",
  10. "jsxImportSource": "solid-js",
  11. "allowJs": true,
  12. "resolveJsonModule": true,
  13. "strict": true,
  14. "isolatedModules": true,
  15. "noEmit": true,
  16. "emitDeclarationOnly": false,
  17. "outDir": "node_modules/.ts-dist",
  18. "types": ["vite/client", "node", "electron"]
  19. },
  20. "references": [{ "path": "../app" }],
  21. "include": ["src", "package.json"],
  22. "exclude": ["src/**/*.test.ts"]
  23. }