2
0

tsconfig.build.server.json 615 B

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