北斗天云官网管理系统后端接口
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.

28 line
685B

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