]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
build: add experimental
authorEduardo San Martin Morote <posva13@gmail.com>
Sat, 26 Jul 2025 07:34:53 +0000 (09:34 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Sat, 26 Jul 2025 07:34:53 +0000 (09:34 +0200)
packages/router/tsdown.config.ts

index b3dbb401b953b8fce8119021261e1b514eeadcd3..99d4ddf907905cef26df5a08dc7f88dc1b848066 100644 (file)
@@ -36,20 +36,11 @@ const commonOptions = {
   dts: false,
 } satisfies Options
 
-const experimental = {
-  ...commonOptions,
-  sourcemap: true,
-  entry: {
-    'experimental/index': './src/experimental/index.ts',
-  },
-  dts: true,
-} satisfies Options
-
 const esm = {
   ...commonOptions,
   entry: {
     ...commonOptions.entry,
-    // 'experimental/index': './src/experimental/index.ts',
+    'experimental/index': './src/experimental/index.ts',
   },
   platform: 'neutral',
   dts: true,
@@ -119,5 +110,4 @@ export default [
   cjsProd,
   iife,
   iifeProd,
-  // experimental,
 ]