diff --git a/import-map.json b/import-map.json index e358126..083fb9c 100644 --- a/import-map.json +++ b/import-map.json @@ -1,5 +1,5 @@ { "imports": { - "test": "./test-modules/module-1.tsx" + "test": "./test-modules/1.tsx" } } diff --git a/test-modules/module-1.tsx b/test-modules/1.tsx similarity index 86% rename from test-modules/module-1.tsx rename to test-modules/1.tsx index e9260af..dbc88ca 100644 --- a/test-modules/module-1.tsx +++ b/test-modules/1.tsx @@ -1,4 +1,4 @@ -import './module-2.ts' +import './2.ts' function t(...args: unknown[]) { console.log(args) diff --git a/test-modules/module-2.ts b/test-modules/2.ts similarity index 100% rename from test-modules/module-2.ts rename to test-modules/2.ts