tsconfig.json 697 B

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