Include tests in ts-config

This commit is contained in:
dapplion 2020-11-04 18:00:50 +00:00
parent c22069335f
commit eaffbae449
3 changed files with 7 additions and 2 deletions

View File

@ -23,7 +23,7 @@
"build": "yarn build-lib && yarn build-types",
"build:release": "yarn clean && yarn build && yarn build-web",
"build-lib": "babel src -x .ts -d lib",
"build-types": "tsc --declaration --incremental --outDir lib --emitDeclarationOnly",
"build-types": "tsc --declaration --incremental --outDir lib --project tsconfig.build.json --emitDeclarationOnly",
"build-web": "webpack --mode production --entry ./lib/web.js --output ./dist/bls.min.js",
"check-types": "tsc --noEmit",
"lint": "eslint --color --ext .ts src/ test/",

5
tsconfig.build.json Normal file
View File

@ -0,0 +1,5 @@
{
"extends": "./tsconfig",
"include": ["src"],
"exclude": ["test"],
}

View File

@ -1,5 +1,5 @@
{
"include": ["src"],
"include": ["src", "test"],
"compilerOptions": {
"target": "esnext",
"module": "commonjs",