forked from Trusted-eSign/trusted-crypto
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
46 lines (46 loc) · 1.25 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
"target": "es5",
"rootDir": "lib",
"outDir": "buildjs",
"declaration": true,
"outFile": "buildjs/trusted.js",
"sourceMap": true
},
"files": [
"lib/data_format.ts",
"lib/crypto_method.ts",
"lib/public_exponent.ts",
"lib/native.ts",
"lib/object.ts",
"lib/core/collection.ts",
"lib/pki/key_usage.ts",
"lib/pki/key.ts",
"lib/pki/oid.ts",
"lib/pki/alg.ts",
"lib/pki/attr.ts",
"lib/pki/attr_vals.ts",
"lib/pki/cert.ts",
"lib/pki/certs.ts",
"lib/pki/certReq.ts",
"lib/pki/certReqInfo.ts",
"lib/pki/revocation.ts",
"lib/pki/crl.ts",
"lib/pki/crls.ts",
"lib/pki/csr.ts",
"lib/pki/chain.ts",
"lib/pki/cipher.ts",
"lib/pki/pkcs12.ts",
"lib/cms/recipientinfo.ts",
"lib/cms/recipientinfos.ts",
"lib/cms/signer.ts",
"lib/cms/signer_attrs.ts",
"lib/cms/signers.ts",
"lib/cms/signed_data.ts",
"lib/pkistore/cashjson.ts",
"lib/pkistore/pcryptopro.ts",
"lib/pkistore/pmicrosoft.ts",
"lib/pkistore/psystem.ts",
"lib/pkistore/pkistore.ts"
]
}