Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMestery <mestery@pm.me>2021-10-11 19:08:34 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2021-10-20 15:08:28 +0300
commita3970092693785f73161a80e81411fd043535eaa (patch)
tree5becf5cec6c27242ed15580277b0f96af9c05b6f /tsconfig.json
parente1d598c8f2f046e0072cda974a471abcba103297 (diff)
typings: separate `internalBinding` typings
PR-URL: https://github.com/nodejs/node/pull/40409 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com> Reviewed-By: Qingyu Deng <i@ayase-lab.com>
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 048ecd6f48e..ea179268d9a 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -2,16 +2,20 @@
"include": ["lib","doc"],
"exclude": ["src","tools","out"],
"files": [
+ "./typings/internalBinding/config.d.ts",
+ "./typings/internalBinding/constants.d.ts",
"./typings/internalBinding/fs.d.ts",
"./typings/internalBinding/http_parser.d.ts",
"./typings/internalBinding/messaging.d.ts",
"./typings/internalBinding/options.d.ts",
"./typings/internalBinding/os.d.ts",
"./typings/internalBinding/serdes.d.ts",
+ "./typings/internalBinding/symbols.d.ts",
"./typings/internalBinding/timers.d.ts",
+ "./typings/internalBinding/types.d.ts",
"./typings/internalBinding/util.d.ts",
"./typings/internalBinding/worker.d.ts",
- "./typings/internalBinding.d.ts",
+ "./typings/globals.d.ts",
"./typings/primordials.d.ts"
],
"compilerOptions": {