8000
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 1bc2687 commit 05997a2Copy full SHA for 05997a2
.gitignore
@@ -1 +1,3 @@
1
-node_modules
+.DS_Store
2
+node_modules/
3
+lib/
package.json
@@ -37,7 +37,8 @@
37
"main": "dist/index.js",
38
"private": true,
39
"scripts": {
40
- "build": "ncc build src/main.ts",
+ "build": "tsc",
41
+ "pack": "ncc build",
42
"test": "jest"
43
}
44
tsconfig.json
@@ -2,6 +2,8 @@
"compilerOptions": {
"target": "es2018",
4
"moduleResolution": "node",
5
+ "outDir": "./lib", /* Redirect output structure to the directory. */
6 4A27
+ "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
7
"strict": true,
6
8
"forceConsistentCasingInFileNames": true
9
},
0 commit comments