tsconfig.json 727 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "module": "ESNEXT",
  5. "noImplicitAny": true,
  6. "removeComments": true,
  7. "preserveConstEnums": true,
  8. "moduleResolution": "node",
  9. "outDir": "build",
  10. "lib": ["es2018", "dom"],
  11. "esModuleInterop": true,
  12. "sourceMap": true,
  13. "target": "es2018",
  14. "emitDecoratorMetadata": true,
  15. "experimentalDecorators": true,
  16. "baseUrl": ".",
  17. "paths": {
  18. "@db/*": ["../db/src/*"]
  19. }
  20. },
  21. "references": [
  22. {
  23. "path": "../db"
  24. }
  25. ],
  26. "include": [
  27. "src/**/*.ts", "src/client.js"
  28. ],
  29. "exclude": [
  30. "node_modules"
  31. ]
  32. }