tsconfig.json 850 B

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