tsconfig.json 405 B

123456789101112131415161718192021
  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. "@growi/*": ["../*/src"]
  14. }
  15. },
  16. "exclude": [
  17. "node_modules",
  18. "dist",
  19. "**/*.test.ts"
  20. ]
  21. }