tsconfig.json 458 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es2019",
  5. "lib": [
  6. "ES2019"
  7. ],
  8. "outDir": "out",
  9. "rootDir": "src",
  10. "sourceMap": true
  11. },
  12. "include": [
  13. "src"
  14. ],
  15. "exclude": [
  16. "node_modules",
  17. ".vscode-test"
  18. ],
  19. "references": [
  20. {
  21. "path": "./client"
  22. },
  23. {
  24. "path": "./server"
  25. }
  26. ]
  27. }