We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2b762b commit ee12219Copy full SHA for ee12219
package.json
@@ -6,7 +6,7 @@
6
"scripts": {
7
"build": "npm run lint && rollup --config rollup.config.ts --configPlugin typescript && npm run generate-types",
8
"generate-types": "tsc --project tsconfig.types.json",
9
- "update-extensions": "ts-node update-extensions.ts",
+ "update-extensions": "node --loader ts-node/esm update-extensions.ts",
10
"lint": "eslint --ext .ts src update-extensions.ts"
11
},
12
"repository": {
tsconfig.json
@@ -23,5 +23,10 @@
23
"exclude": [
24
"dist",
25
"node_modules"
26
- ]
+ ],
27
+ "ts-node": {
28
+ "compilerOptions": {
29
+ "module": "commonjs"
30
+ }
31
32
}
0 commit comments