We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaa3b06 commit 09ada78Copy full SHA for 09ada78
2 files changed
.npmignore
@@ -0,0 +1,8 @@
1
+/.nyc_output
2
+/coverage
3
+/functional_tests
4
+/node_modules
5
+/src
6
+.gitignore
7
+.travis.yml
8
+tsconfig.json
package.json
@@ -3,12 +3,13 @@
"version": "1.0.0-beta.1",
"description": "Webpack plugin for bundling build outputs into a WAR archive",
"main": "dist/index.js",
+ "types": "dist/index.d.ts",
"repository": "https://github.com/DevWurm/webpack-war-plugin",
"author": "DevWurm",
9
"license": "MIT",
10
"scripts": {
11
"prebuild": "yarn run clean",
- "build": "tsc",
12
+ "build": "tsc -d",
13
"clean": "rimraf dist",
14
"test": "mocha --compilers ts:ts-node/register src/**/*.spec.ts",
15
"test:coverage": "nyc yarn run test",
0 commit comments