tsconfig.app.json 496 B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.dom.json",
  3. "include": [
  4. "env.d.ts",
  5. "src/**/*",
  6. "src/**/*.vue"
  7. ],
  8. "exclude": [
  9. "src/**/__tests__/*"
  10. ],
  11. "compilerOptions": {
  12. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  13. "allowJs": true, //保留js
  14. "allowSyntheticDefaultImports": true,
  15. "outDir": "build",
  16. "jsx": "preserve",
  17. "esModuleInterop": true,
  18. "strict": true,
  19. "paths": {
  20. "@/*": [
  21. "./src/*"
  22. ]
  23. }
  24. }
  25. }