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 913bcd9 commit 00517e8Copy full SHA for 00517e8
package.json
@@ -2,12 +2,12 @@
2
"name": "typescript-npm-package-template",
3
"version": "0.0.0-development",
4
"description": "A template for creating npm packages using TypeScript and VSCode",
5
- "main": "./lib/src/index.js",
+ "main": "./lib/index.js",
6
"files": [
7
"lib/**/*"
8
],
9
"scripts": {
10
- "build": "tsc",
+ "build": "tsc --project tsconfig.build.json",
11
"clean": "rm -rf ./lib/",
12
"cm": "cz",
13
"lint": "eslint ./src/ --fix",
tsconfig.build.json
@@ -0,0 +1,6 @@
1
+{
+ "extends": "./tsconfig.json",
+ "exclude": [
+ "test/**/*.spec.ts",
+ ]
+}
0 commit comments