tsconfig.build.server.json 527 B

1234567891011121314151617181920212223242526
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "outDir": "transpiled",
  5. "declaration": true,
  6. "noResolve": false,
  7. "preserveConstEnums": true,
  8. "sourceMap": false,
  9. "noEmit": false,
  10. "baseUrl": ".",
  11. "paths": {
  12. "~/*": ["./src/*"],
  13. "^/*": ["./*"],
  14. "debug": ["./src/utils/logger/alias-for-debug"]
  15. }
  16. },
  17. "exclude": [
  18. "resouce",
  19. "src/client",
  20. "src/components",
  21. "src/linter-checker",
  22. "src/stores",
  23. "src/styles",
  24. "src/styles-hackmd",
  25. ]
  26. }