tsconfig.json 410 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "NodeNext",
  5. "moduleResolution": "NodeNext",
  6. "baseUrl": ".",
  7. "paths": {
  8. "@/*": ["./src/*"]
  9. },
  10. "outDir": "./dist",
  11. "rootDir": "./src",
  12. "strict": true,
  13. "esModuleInterop": true,
  14. "skipLibCheck": true,
  15. "forceConsistentCasingInFileNames": true
  16. },
  17. "include": ["src/**/*"],
  18. "exclude": ["node_modules"]
  19. }