Skip to content

Commit eb27390

Browse files
committed
Use bundler rather than nodenext so extensions not needed (in src/index.ts)
1 parent 7a29693 commit eb27390

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

testsuite/tsconfig.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"extends": "../tsconfig/mjs.json",
33
"compilerOptions": {
4+
"rootDir": ".",
45
"outDir": "./js",
6+
"moduleResolution": "bundler",
57
"paths": {
68
"#js/*": ["../mjs/*"],
7-
"#source/*": ["../components/mjs/*"]
9+
"#source/*": ["../components/mjs/*"],
10+
"#helpers": ["./src/index.js"]
811
}
912
},
10-
"include": ["./tests/**/*.ts"]
13+
"include": ["./tests/**/*.ts", "./src/*.ts"]
1114
}

0 commit comments

Comments
 (0)