Kevin Marrec

Results 117 comments of Kevin Marrec

As an alternative of `vite.server.watch.usePolling` option, you can add this to your Shell profile (`.bashrc`/`.zshrc`, ...) : ```sh # Workaround for Chokidar Watcher export CHOKIDAR_USEPOLLING=1 ``` This will do the...

- Last proposal for **extends options** from @Atinux sounds good to me (object with `from` key and all other keys as options) - I also agree for **Low to High**...

@chanlito Unsure what is not working, why your import wouldn't work ? Are you missing this : https://github.com/nuxt/typescript/blob/master/examples/options-api/minimal/tsconfig.json#L21 ?

Oh yeah you're right, I'll check in the coming days what can be done

@opgbaudouin About `"@api/*"` in `tsconfig.json` it will just resolves it for types imports / type checking. If you're really using such thing in your Nuxt app, you need to telle...

Anyone wanting to provide a PR against either the module or documentation to implement this feature request ? :)

@ysizarie Could you maybe confirm it work when using **JavaScript** over **TypeScript** ? As stated here : https://nuxtjs.org/guide/vuex-store#module-files, it should work Please provide a repository with the unexpected behavior so...

@rlam3 Your issue seems to be cause of TypeScript 4.1 update. A said in release notes, you may need to fix your type, I think that just doing what the...

@rlam3 Unless you have a shims file like : ```ts declare module '*.vue' { import Vue from 'vue' export default Vue } ``` that indicates to TypeScript that your `.vue`...