tsconfig.json 939 B

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