UNPKG
@ecash/lib
Version:
latest (1.5.1-rc3)
1.5.1-rc3
1.5.1-rc2
1.5.1-rc1
1.5.1-rc0
1.5.0-rc0
Library for eCash transaction building
github.com/Bitcoin-ABC/bitcoin-abc
Bitcoin-ABC/bitcoin-abc
@ecash/lib
/
tsconfig.build.json
14 lines
(13 loc)
•
323 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** tsconfig for building the actual library */
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"noEmit"
:
false
,
"declaration"
:
true
,
"declarationMap"
:
true
,
"sourceMap"
:
true
,
"outDir"
:
"./dist"
}
,
"include"
:
[
"./src/**/*"
]
,
"exclude"
:
[
"./**/*.test.ts"
]
}