Skip to content

Commit

Permalink
Refine tsconfig.json for CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
dajiaji committed Aug 24, 2024
1 parent dbbabbf commit c2b3f0e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
5 changes: 4 additions & 1 deletion x/dhkem-secp256k1/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"paths": {
"@hpke/core": ["../core/mod.ts"]
},
"allowImportingTsExtensions": true
},
"include": [
"mod.ts",
"../../src/kems/dhkemSecp256k1.ts"
"src/**/*"
]
}
5 changes: 4 additions & 1 deletion x/dhkem-x25519/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"paths": {
"@hpke/core": ["../core/mod.ts"]
},
"allowImportingTsExtensions": true
},
"include": [
"mod.ts",
"../../src/kems/dhkemX25519.ts"
"src/**/*"
]
}
5 changes: 4 additions & 1 deletion x/dhkem-x448/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"paths": {
"@hpke/core": ["../core/mod.ts"]
},
"allowImportingTsExtensions": true
},
"include": [
"mod.ts",
"../../src/kems/dhkemX448.ts"
"src/**/*"
]
}
6 changes: 5 additions & 1 deletion x/hybridkem-x25519-kyber768/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"paths": {
"@hpke/core": ["../core/mod.ts"],
"@hpke/dhkem-x25519": ["../dhkem-x25519/mod.ts"],
},
"allowImportingTsExtensions": true
},
"include": [
"mod.ts",
"../../src/kems/hybridkemX25519Kyber768.ts"
"src/**/*"
]
}

0 comments on commit c2b3f0e

Please sign in to comment.