Results 3 comments of Tokyo

this is my solution ``` const storage = multer.diskStorage({ destination: function (req, file, cb) { cb(null, fullPath); }, filename: function (req, file, cb) { let extname = path.extname(file.originalname); file.originalname =...

@mareszhar I watched your repository, you used typescript. add `"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "components.d.ts"],` on **tsconfig.json**. Personally I think u missed `components.d.ts`

![image](https://user-images.githubusercontent.com/43608856/185576531-ed74037a-8f07-4539-a03e-71ea530dd31a.png) https://github.com/antfu/unplugin-vue-components In this docs you could see add components.d.ts to your tsconfig.json under include