tslint.json 301 B

123456789101112
  1. {
  2. "rules": {
  3. "no-internal-module": true
  4. },
  5. "meta": {
  6. "category": "typescript-specific",
  7. "description": "禁止使用 `module` 来定义命名空间",
  8. "reason": "`module` 已成为 js 的关键字",
  9. "ts-only": true,
  10. "has-fixer": true
  11. }
  12. }