tsconfig.build.server.json 581 B

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