tsconfig.build.client.json 394 B

1234567891011121314151617
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "noFallthroughCasesInSwitch": true,
  6. "noUnusedLocals": true,
  7. "noUnusedParameters": true,
  8. "strict": true,
  9. "baseUrl": ".",
  10. "paths": {
  11. "~/*": ["./src/*"],
  12. "^/*": ["./*"],
  13. "@growi/*": ["../*/src"],
  14. "debug": ["./src/server/utils/logger/alias-for-debug"]
  15. }
  16. }
  17. }