tsconfig.json 538 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "CommonJS",
  5. "moduleResolution": "node",
  6. "allowSyntheticDefaultImports": true,
  7. "esModuleInterop": true,
  8. "allowJs": true,
  9. "strict": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "skipLibCheck": true,
  12. "declaration": true,
  13. "outDir": "./dist",
  14. "rootDir": "./src",
  15. "baseUrl": ".",
  16. "paths": {
  17. "@/*": ["./src/*"],
  18. "@types/*": ["./src/types/*"]
  19. }
  20. },
  21. "include": ["src/**/*"],
  22. "exclude": ["node_modules", "dist"]
  23. }