tsconfig.build.server.json 646 B

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