jsconfig.json 385 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "paths": {
  5. "@/*": ["src/*"],
  6. "@root/*": ["./*"],
  7. "~@assets": ["src/assets/*"],
  8. "$uni-router": ["helpers/uni-router/index.js"],
  9. "$unocss-preset-shades": ["helpers/unocss-preset-shades/index.js"]
  10. },
  11. "resolveJsonModule": true,
  12. "esModuleInterop": true,
  13. },
  14. "exclude": ["node_modules", "dist"]
  15. }