diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..6eeadf9 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,18 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Start App", + "type": "shell", + "group": "build", + "command": "npm run build:watch", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "runOptions": { + "runOn": "folderOpen", + } + } + ] +} diff --git a/package.json b/package.json index fd2125d..e71afd7 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "./package.json": "./package.json" }, "files": [ + "src/*", "dist/src/*", "dist/types/*", "bin/*"