招聘网页
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 729B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "allowJs": true,
  5. "useDefineForClassFields": true,
  6. "module": "ESNext",
  7. "lib": ["ES2020", "DOM", "DOM.Iterable"],
  8. "skipLibCheck": true,
  9. "baseUrl": "./",
  10. "paths": {"@/*": ["src/*"]},
  11. /* Bundler mode */
  12. "moduleResolution": "bundler",
  13. "allowImportingTsExtensions": true,
  14. "resolveJsonModule": true,
  15. "isolatedModules": true,
  16. "noEmit": true,
  17. "jsx": "preserve",
  18. /* Linting */
  19. "strict": true,
  20. "noUnusedLocals": true,
  21. "noUnusedParameters": true,
  22. "noFallthroughCasesInSwitch": true
  23. },
  24. "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.d.ts"],
  25. "references": [{ "path": "./tsconfig.node.json" }]
  26. }