UNPKG
ecash-lib
Version:
latest (4.5.2)
rc (1.5.2-rc)
4.5.2
4.5.1
4.5.0
4.4.0
4.3.3
4.3.2
4.3.1
4.3.0
4.1.0
4.0.1
4.0.0
3.2.0
3.1.0
3.0.0
2.1.0
2.0.0
1.5.2-rc
1.5.1
1.5.0
1.4.1
1.4.0
1.3.0
1.2.2-rc9
1.2.2-rc8
1.2.2-rc7
1.2.2-rc6
1.2.2-rc5
1.2.2-rc4
1.2.2-rc3
1.2.2-rc21
1.2.2-rc20
1.2.2-rc2
1.2.2-rc19
1.2.2-rc18
1.2.2-rc17
1.2.2-rc16
1.2.2-rc15
1.2.2-rc14
1.2.2-rc13
1.2.2-rc12
1.2.2-rc11
1.2.2-rc10
1.2.2-rc1
1.2.2-rc
1.2.1
1.2.1-rc
1.2.0
1.1.0
1.0.1
1.0.1-rc
1.0.0
0.2.1
0.2.0
0.2.0-rc
0.1.3
0.1.2
0.1.1
0.1.0
0.1.0-rc3
0.1.0-rc2
0.1.0-rc
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"
]
}