tsconfig.json 664 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "esModuleInterop": true,
  10. "allowSyntheticDefaultImports": true,
  11. "experimentalDecorators":true,
  12. "sourceMap": true,
  13. "skipLibCheck": true,
  14. "baseUrl": ".",
  15. "types": [
  16. "webpack-env",
  17. "@dcloudio/types"
  18. ],
  19. "paths": {
  20. "@/*": [
  21. "./src/*"
  22. ]
  23. },
  24. "lib": [
  25. "esnext",
  26. "dom",
  27. "dom.iterable",
  28. "scripthost"
  29. ]
  30. },
  31. "exclude": [
  32. "node_modules",
  33. "unpackage",
  34. "dist",
  35. "src/**/*.nvue"
  36. ]
  37. }