tsconfig.json 797 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "allowSyntheticDefaultImports": true,
  9. "strictFunctionTypes": false,
  10. "jsx": "preserve",
  11. "baseUrl": ".",
  12. "allowJs": true,
  13. "sourceMap": true,
  14. "esModuleInterop": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "experimentalDecorators": true,
  18. "lib": ["dom", "esnext"],
  19. "incremental": true,
  20. "skipLibCheck": true,
  21. "paths": {
  22. "/@/*": ["src/*"]
  23. }
  24. },
  25. "plugins": [
  26. {
  27. "name": "@vuedx/typescript-plugin-vue"
  28. }
  29. ],
  30. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
  31. "exclude": ["node_modules", "dist", "**/*.js"]
  32. }