中医古籍标引
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

43 行
1.5KB

  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "useDefineForClassFields": true,
  5. "module": "ESNext",
  6. "moduleResolution": "Node",
  7. "types": ["vite/client", "element-plus/global"],
  8. "noImplicitAny": false,
  9. /* Strict Type-Checking Options */
  10. "strict": true /* Enable all strict type-checking options. */,
  11. // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
  12. // "strictNullChecks": true, /* Enable strict null checks. */
  13. // "strictFunctionTypes": true, /* Enable strict checking of function types. */
  14. // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
  15. // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
  16. // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
  17. // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
  18. "jsx": "preserve",
  19. "resolveJsonModule": true,
  20. "isolatedModules": true,
  21. "esModuleInterop": true,
  22. "lib": ["ESNext", "DOM"],
  23. "skipLibCheck": true,
  24. "noEmit": true,
  25. "baseUrl": "./",
  26. "paths": {
  27. "@": ["src"],
  28. "@/*": ["src/*"]
  29. }
  30. },
  31. "include": [
  32. "src/**/*.ts",
  33. "src/**/*.d.ts",
  34. "src/**/*.tsx",
  35. "src/**/*.vue",
  36. "build/**/*.ts",
  37. "build/**/*.d.ts",
  38. "vite.config.ts"
  39. ],
  40. "exclude": ["node_modules", "dist", "**/*.js"]
  41. }