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 1df6bd2 commit 9cef633Copy full SHA for 9cef633
package.json
@@ -2,8 +2,9 @@
2
"name": "typescript-plugin-namespace-import",
3
"version": "0.1.0",
4
"description": "",
5
- "main": "index.js",
+ "main": "dist/index.js",
6
"scripts": {
7
+ "build": "tsc",
8
"test": "echo \"Error: no test specified\" && exit 1"
9
},
10
"repository": {
tsconfig.json
@@ -3,6 +3,7 @@
"target": "ES2017",
"lib": ["esnext", "dom"],
"module": "commonjs",
+ "outDir": "dist",
"strict": true,
"esModuleInterop": true
0 commit comments