79174776

Date: 2024-11-10 11:31:25
Score: 0.5
Natty:
Report link

I had to add paths compiler option to the tsconfig.app.json file instead of the tsconfig.json file for my IDE to recognize.

"paths": {
  "src/*": [
    "./src/*"
  ],
}

Along with the resolve config for vite.config.ts file.

resolve: {
  alias: {
    src: '/src',
  },
},
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Сүхболд A.