tsconfig.build.server.json 685 B

123456789101112131415161718192021222324252627282930
  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. // "@growi/remark-lsx/*": ["../../packages/remark-lsx/dist/*"],
  17. "debug": ["./src/utils/logger/alias-for-debug"]
  18. }
  19. },
  20. "exclude": [
  21. "config",
  22. "resource",
  23. "src/client",
  24. "src/components",
  25. "src/linter-checker",
  26. "src/stores",
  27. "src/styles",
  28. "src/styles-hackmd"
  29. ]
  30. }