物管理前端
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.

25 lines
670 B

  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "noImplicitThis": true,
  7. "jsx": "preserve",
  8. "importHelpers": true,
  9. "moduleResolution": "node",
  10. "experimentalDecorators": true,
  11. "skipLibCheck": true,
  12. "esModuleInterop": true,
  13. "allowSyntheticDefaultImports": true,
  14. "sourceMap": true,
  15. "resolveJsonModule": true,
  16. "baseUrl": ".",
  17. "types": ["vite/client", "vite-plugin-pwa/client"],
  18. "paths": {
  19. "@/*": ["src/*"]
  20. },
  21. "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
  22. },
  23. "include": ["src/**/*.ts", "src/**/*.vue", "tests/**/*.ts"],
  24. "exclude": ["node_modules"]
  25. }