tsconfig.json 472 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "NodeNext",
  5. "moduleResolution": "NodeNext",
  6. "outDir": "./build",
  7. "rootDir": "./src",
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "baseUrl": ".",
  13. "paths": {
  14. "@/*": ["src/*"]
  15. }
  16. },
  17. "include": ["src/**/*"],
  18. "exclude": ["node_modules"],
  19. "ts-node": {
  20. "require": ["tsconfig-paths/register"]
  21. }
  22. }