招聘网页
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 681B

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