tsconfig.json 474 B

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