tsconfig.json 777 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": false,
  6. "jsx": "preserve",
  7. "moduleResolution": "node",
  8. "experimentalDecorators": true,
  9. "noImplicitAny": false,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "useDefineForClassFields": true,
  15. "sourceMap": true,
  16. "baseUrl": ".",
  17. "types": ["webpack-env"],
  18. "paths": {
  19. "@/*": ["src/*"]
  20. },
  21. "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
  22. },
  23. "include": [
  24. "src/**/*.ts",
  25. "src/**/*.tsx",
  26. "src/**/*.vue",
  27. "**/*.d.ts",
  28. "tests/**/*.ts",
  29. "tests/**/*.tsx"
  30. ],
  31. "exclude": ["node_modules"]
  32. }