tsconfig.json 346 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "rootDir": "./src",
  5. "module": "ESNext",
  6. "moduleResolution": "Bundler",
  7. "strict": true,
  8. "outDir": "./dist",
  9. "esModuleInterop": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "skipLibCheck": true
  12. },
  13. "exclude": ["templates", "**/*.test.ts", "vitest.config.ts"]
  14. }