tsconfig.json 334 B

12345678910111213141516
  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. }