nuxt-typed-router 3.0.8 → 3.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.d.ts CHANGED
@@ -26,7 +26,7 @@ interface ModuleOptions {
26
26
  strict?: boolean | StrictOptions;
27
27
  /**
28
28
  * Remove Nuxt definitions to avoid conflicts
29
- * @default false
29
+ * @default true
30
30
  */
31
31
  experimentalRemoveNuxtDefs?: boolean;
32
32
  }
package/dist/module.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "nuxt": "^3.0.0",
6
6
  "bridge": false
7
7
  },
8
- "version": "3.0.8"
8
+ "version": "3.0.9"
9
9
  }
package/dist/module.mjs CHANGED
@@ -1667,7 +1667,7 @@ const module = defineNuxtModule({
1667
1667
  plugin: false,
1668
1668
  strict: false,
1669
1669
  experimentalPathCheck: true,
1670
- experimentalRemoveNuxtDefs: false
1670
+ experimentalRemoveNuxtDefs: true
1671
1671
  },
1672
1672
  setup(moduleOptions, nuxt) {
1673
1673
  const { resolve } = createResolver(import.meta.url);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-typed-router",
3
- "version": "3.0.8",
3
+ "version": "3.0.9",
4
4
  "description": "Provide autocompletion for routes paths, names and params in Nuxt apps",
5
5
  "type": "module",
6
6
  "main": "./dist/module.cjs",