Add typescript build tools 63/236563/3
authorSangYong Park <sy302.park@samsung.com>
Wed, 17 Jun 2020 23:37:50 +0000 (08:37 +0900)
committerSangYong Park <sy302.park@samsung.com>
Wed, 1 Jul 2020 04:52:41 +0000 (13:52 +0900)
commit59616a16399c9dc804df16ff521a5887fbd97e2c
treebe5ca2b8535f540c157a513ee73b497287dfb6a3
parent073779a68db4d453f756dfba9283d94cb4535678
Add typescript build tools

. node.js v12.13.1
. node_modules
  - @types/node@14.0.5
  - typescript@3.9.3

Change-Id: Iaeea2f8bfa2da3a0229bb42b6b323e473acc7fef
Signed-off-by: SangYong Park <sy302.park@samsung.com>
233 files changed:
build/tools/node [new file with mode: 0755]
node_modules/.bin/tsc [new symlink]
node_modules/.bin/tsserver [new symlink]
node_modules/@types/node/LICENSE [new file with mode: 0644]
node_modules/@types/node/README.md [new file with mode: 0644]
node_modules/@types/node/assert.d.ts [new file with mode: 0644]
node_modules/@types/node/async_hooks.d.ts [new file with mode: 0644]
node_modules/@types/node/base.d.ts [new file with mode: 0644]
node_modules/@types/node/buffer.d.ts [new file with mode: 0644]
node_modules/@types/node/child_process.d.ts [new file with mode: 0644]
node_modules/@types/node/cluster.d.ts [new file with mode: 0644]
node_modules/@types/node/console.d.ts [new file with mode: 0644]
node_modules/@types/node/constants.d.ts [new file with mode: 0644]
node_modules/@types/node/crypto.d.ts [new file with mode: 0644]
node_modules/@types/node/dgram.d.ts [new file with mode: 0644]
node_modules/@types/node/dns.d.ts [new file with mode: 0644]
node_modules/@types/node/domain.d.ts [new file with mode: 0644]
node_modules/@types/node/events.d.ts [new file with mode: 0644]
node_modules/@types/node/fs.d.ts [new file with mode: 0644]
node_modules/@types/node/fs/promises.d.ts [new file with mode: 0644]
node_modules/@types/node/globals.d.ts [new file with mode: 0644]
node_modules/@types/node/globals.global.d.ts [new file with mode: 0644]
node_modules/@types/node/http.d.ts [new file with mode: 0644]
node_modules/@types/node/http2.d.ts [new file with mode: 0644]
node_modules/@types/node/https.d.ts [new file with mode: 0644]
node_modules/@types/node/index.d.ts [new file with mode: 0644]
node_modules/@types/node/inspector.d.ts [new file with mode: 0644]
node_modules/@types/node/module.d.ts [new file with mode: 0644]
node_modules/@types/node/net.d.ts [new file with mode: 0644]
node_modules/@types/node/os.d.ts [new file with mode: 0644]
node_modules/@types/node/package.json [new file with mode: 0644]
node_modules/@types/node/path.d.ts [new file with mode: 0644]
node_modules/@types/node/perf_hooks.d.ts [new file with mode: 0644]
node_modules/@types/node/process.d.ts [new file with mode: 0644]
node_modules/@types/node/punycode.d.ts [new file with mode: 0644]
node_modules/@types/node/querystring.d.ts [new file with mode: 0644]
node_modules/@types/node/readline.d.ts [new file with mode: 0644]
node_modules/@types/node/repl.d.ts [new file with mode: 0644]
node_modules/@types/node/stream.d.ts [new file with mode: 0644]
node_modules/@types/node/string_decoder.d.ts [new file with mode: 0644]
node_modules/@types/node/timers.d.ts [new file with mode: 0644]
node_modules/@types/node/tls.d.ts [new file with mode: 0644]
node_modules/@types/node/trace_events.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.2/base.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.2/fs.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.2/globals.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.2/index.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.2/util.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.5/base.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.5/globals.global.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.5/index.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.5/wasi.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.7/assert.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.7/base.d.ts [new file with mode: 0644]
node_modules/@types/node/ts3.7/index.d.ts [new file with mode: 0644]
node_modules/@types/node/tty.d.ts [new file with mode: 0644]
node_modules/@types/node/url.d.ts [new file with mode: 0644]
node_modules/@types/node/util.d.ts [new file with mode: 0644]
node_modules/@types/node/v8.d.ts [new file with mode: 0644]
node_modules/@types/node/vm.d.ts [new file with mode: 0644]
node_modules/@types/node/worker_threads.d.ts [new file with mode: 0644]
node_modules/@types/node/zlib.d.ts [new file with mode: 0644]
node_modules/typescript/AUTHORS.md [new file with mode: 0644]
node_modules/typescript/CODE_OF_CONDUCT.md [new file with mode: 0644]
node_modules/typescript/CopyrightNotice.txt [new file with mode: 0644]
node_modules/typescript/LICENSE.txt [new file with mode: 0644]
node_modules/typescript/README.md [new file with mode: 0644]
node_modules/typescript/ThirdPartyNoticeText.txt [new file with mode: 0644]
node_modules/typescript/bin/tsc [new file with mode: 0755]
node_modules/typescript/bin/tsserver [new file with mode: 0755]
node_modules/typescript/lib/README.md [new file with mode: 0644]
node_modules/typescript/lib/cancellationToken.js [new file with mode: 0644]
node_modules/typescript/lib/cs/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/de/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/es/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/fr/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/it/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/ja/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/ko/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/lib.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.dom.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.dom.iterable.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.collection.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.core.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.generator.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.iterable.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.promise.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.proxy.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.reflect.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.symbol.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2016.array.include.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2016.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2016.full.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2017.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2017.full.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2017.intl.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2017.object.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2017.string.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2017.typedarrays.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2018.asynciterable.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2018.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2018.full.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2018.intl.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2018.promise.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2018.regexp.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2019.array.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2019.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2019.full.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2019.object.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2019.string.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2019.symbol.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2020.bigint.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2020.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2020.full.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2020.promise.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2020.string.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es5.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.es6.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.array.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.asynciterable.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.bigint.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.full.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.intl.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.promise.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.string.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.esnext.symbol.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.scripthost.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.webworker.d.ts [new file with mode: 0644]
node_modules/typescript/lib/lib.webworker.importscripts.d.ts [new file with mode: 0644]
node_modules/typescript/lib/pl/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/protocol.d.ts [new file with mode: 0644]
node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/ru/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/tr/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/tsc.js [new file with mode: 0644]
node_modules/typescript/lib/tsserver.js [new file with mode: 0644]
node_modules/typescript/lib/tsserverlibrary.d.ts [new file with mode: 0644]
node_modules/typescript/lib/tsserverlibrary.js [new file with mode: 0644]
node_modules/typescript/lib/typesMap.json [new file with mode: 0644]
node_modules/typescript/lib/typescript.d.ts [new file with mode: 0644]
node_modules/typescript/lib/typescript.js [new file with mode: 0644]
node_modules/typescript/lib/typescriptServices.d.ts [new file with mode: 0644]
node_modules/typescript/lib/typescriptServices.js [new file with mode: 0644]
node_modules/typescript/lib/typingsInstaller.js [new file with mode: 0644]
node_modules/typescript/lib/watchGuard.js [new file with mode: 0644]
node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHS/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHS/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHS/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHS/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHT/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHT/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHT/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHT/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHT/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CHT/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CSY/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CSY/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CSY/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CSY/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CSY/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/CSY/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/DEU/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/DEU/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/DEU/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/DEU/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/DEU/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/DEU/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ESN/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ESN/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ESN/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ESN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ESN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ESN/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/FRA/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/FRA/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/FRA/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/FRA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/FRA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/FRA/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ITA/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ITA/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ITA/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ITA/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ITA/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/ITA/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/JPN/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/JPN/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/JPN/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/JPN/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/JPN/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/JPN/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/KOR/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/KOR/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/KOR/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/KOR/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/KOR/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/KOR/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PLK/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PLK/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PLK/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PLK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PLK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PLK/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PTB/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PTB/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PTB/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PTB/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PTB/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/PTB/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/RUS/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/RUS/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/RUS/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/RUS/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/RUS/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/RUS/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/TRK/Targets/ProjectItemsSchema.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/TRK/Targets/TypeScriptCompile.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/TRK/Targets/TypeScriptProjectProperties.xaml.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/TRK/TypeScriptDebugEngine/TypeScriptDebugEngine.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/TRK/TypeScriptLanguageService/Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl [new file with mode: 0644]
node_modules/typescript/loc/lcl/TRK/TypeScriptTasks/TypeScript.Tasks.dll.lcl [new file with mode: 0644]
node_modules/typescript/package.json [new file with mode: 0644]