tsconfig.build.client.json 460 B

123456789101112131415161718192021
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "./tsconfig.json",
  4. "compilerOptions": {
  5. "module": "ESNext",
  6. "strict": false,
  7. "noFallthroughCasesInSwitch": true,
  8. "incremental": true,
  9. "baseUrl": ".",
  10. "paths": {
  11. "~/*": ["./src/*"],
  12. "^/*": ["./*"],
  13. "@growi/codemirror-textlint": ["../../packages/codemirror-textlint/src"],
  14. "debug": ["./src/server/utils/logger/alias-for-debug"]
  15. }
  16. }
  17. }