智慧水务管理系统 - 精河县供水工程综合管理平台

123456789101112131415161718192021222324
  1. {
  2. "include": ["scripts/*.js"],
  3. "compilerOptions": {
  4. // Module configuration.
  5. "moduleResolution": "bundler",
  6. "module": "ES2022",
  7. "target": "ES2022",
  8. // I/O.
  9. "noEmit": true,
  10. "allowJs": true,
  11. // Disabled by default. Individual JS files may opt-in to type checking
  12. // by including a `// @ts-check` comment at top of file.
  13. "checkJs": false,
  14. // Checking declarations in dependencies is less important and less
  15. // actionable than checking source JS. Skip until checkJS is on, at least.
  16. "skipLibCheck": true,
  17. // Restrictions.
  18. "strict": true
  19. }
  20. }