tsconfig.json 828 B

1234567891011121314151617181920212223242526272829303132333435
  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. "@shared/*": ["../shared/src/*"]
  19. },
  20. "types": [
  21. "node-fetch"
  22. ]
  23. },
  24. "references": [
  25. {
  26. "path": "../shared"
  27. }
  28. ],
  29. "include": [
  30. "src/**/*.ts", "src/client.js"
  31. ],
  32. "exclude": [
  33. "node_modules"
  34. ]
  35. }