tsconfig.json 755 B

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