tsconfig.json 772 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "miniprogram-api-typings",
  19. "mini-types"
  20. ],
  21. "typeRoots": ["./node_modules/@types", "./types"],
  22. "paths": {
  23. "@/*": [
  24. "./src/*"
  25. ]
  26. },
  27. "lib": [
  28. "esnext",
  29. "dom",
  30. "dom.iterable",
  31. "scripthost"
  32. ]
  33. },
  34. "exclude": [
  35. "node_modules",
  36. "unpackage",
  37. "dist",
  38. "src/**/*.nvue"
  39. ]
  40. }