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 d395ade commit 06d2a79Copy full SHA for 06d2a79
package.json
@@ -30,7 +30,7 @@
30
"scripts": {
31
"lint": "npx eslint --ext .ts --fix",
32
"build": "tsc",
33
- "cli:dev": " tsc && node dist/cli/index.js",
+ "cli:dev": " node dist/cli/index.js --init",
34
"dev": "nodemon dist/index.js",
35
"test": "vitest"
36
},
tsconfig.json
@@ -1,14 +1,16 @@
1
{
2
"compilerOptions": {
3
- "module": "NodeNext",
4
- "moduleResolution": "NodeNext",
+ "module": "ES2020",
5
"target": "ES2020",
+ "moduleResolution" : "node",
6
"outDir": "dist",
7
"strict": true,
8
"noUnusedLocals": true,
9
"noImplicitReturns": true,
10
"alwaysStrict": true,
11
"declaration": true,
12
+ "allowSyntheticDefaultImports" : true
13
14
"include": ["**/*"],
15
+ "exclude" :["__tests__"]
16
}
0 commit comments