From 922373930579ced0e185c8a78ab2ac3a5af2aabd Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Tue, 16 May 2023 13:58:09 +0400 Subject: [PATCH 1/3] Remove typings --- node/docs/TypeScriptSourceToJson.ts | 2 -- node/docs/typings/index.d.ts | 1 - 2 files changed, 3 deletions(-) delete mode 100644 node/docs/typings/index.d.ts diff --git a/node/docs/TypeScriptSourceToJson.ts b/node/docs/TypeScriptSourceToJson.ts index a6e7c8ee6..43b6fcc57 100644 --- a/node/docs/TypeScriptSourceToJson.ts +++ b/node/docs/TypeScriptSourceToJson.ts @@ -1,5 +1,3 @@ -/// - import * as ts from 'typescript'; var path = require('path'); diff --git a/node/docs/typings/index.d.ts b/node/docs/typings/index.d.ts deleted file mode 100644 index 6a9c534c2..000000000 --- a/node/docs/typings/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// From e7daa4075f02f027a33899b9722efd105185e488 Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Tue, 16 May 2023 14:29:14 +0400 Subject: [PATCH 2/3] Fix run script --- node/docs/run.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/node/docs/run.sh b/node/docs/run.sh index 4eca166db..e8771b89f 100755 --- a/node/docs/run.sh +++ b/node/docs/run.sh @@ -1,3 +1,5 @@ +#!/bin/bash + function failed() { local error=${1:-Undefined error} @@ -6,4 +8,4 @@ function failed() } ../node_modules/.bin/tsc || failed 'Compilation failed.' -../_download/archive/*/*/bin/node gendocs.js \ No newline at end of file +node gendocs.js From e9336319fe7c7419a008e2563c98a1c8b7d7909c Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Wed, 17 May 2023 01:06:34 +0400 Subject: [PATCH 3/3] Add omnisharp config --- node/omnisharp.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 node/omnisharp.json diff --git a/node/omnisharp.json b/node/omnisharp.json new file mode 100644 index 000000000..072482fa6 --- /dev/null +++ b/node/omnisharp.json @@ -0,0 +1,5 @@ +{ + "fileOptions": { + "excludeSearchPatterns": ["_test/**/*"] + } +}