tsconfig.json 820 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "resolveJsonModule": true,
  8. "noImplicitAny": false,
  9. "importHelpers": true,
  10. "moduleResolution": "node",
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "experimentalDecorators": true,
  14. "sourceMap": false,
  15. "skipLibCheck": true,
  16. "baseUrl": ".",
  17. "types": [
  18. "@dcloudio/types",
  19. "miniprogram-api-typings",
  20. "mini-types",
  21. "wot-design-uni/global.d.ts"
  22. ],
  23. "paths": {
  24. "@/*": [
  25. "./src/*"
  26. ]
  27. },
  28. "lib": [
  29. "esnext",
  30. "dom",
  31. "dom.iterable",
  32. "scripthost"
  33. ]
  34. },
  35. "exclude": [
  36. "node_modules",
  37. "unpackage",
  38. "src/**/*.nvue"
  39. ],
  40. }