tsconfig.build.client.json 414 B

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