diff options
author | Kirill Dubovitskiy <kirill2003de@gmail.com> | 2023-08-07 00:22:58 -0700 |
---|---|---|
committer | Kirill Dubovitskiy <kirill2003de@gmail.com> | 2023-08-07 00:22:58 -0700 |
commit | 0d1963628c7a5f998aeaf1cf63d8abab2e8923ea (patch) | |
tree | 0660bffc0e83e0cea2bb5ad986c5e4780272be8a /extension/manual-testing-sandbox/example.ts | |
parent | 915199ac6aa5fa0fa2ccb1f9239c2ca1f84e03be (diff) | |
download | sncontinue-0d1963628c7a5f998aeaf1cf63d8abab2e8923ea.tar.gz sncontinue-0d1963628c7a5f998aeaf1cf63d8abab2e8923ea.tar.bz2 sncontinue-0d1963628c7a5f998aeaf1cf63d8abab2e8923ea.zip |
Using esbuild.mjs for configuration
Added example directory with a typescript program and open it by default in the extension host - its nice to have an isolated environment where the extension can be played with. You can always open an actual project folder if you want to
Diffstat (limited to 'extension/manual-testing-sandbox/example.ts')
-rw-r--r-- | extension/manual-testing-sandbox/example.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extension/manual-testing-sandbox/example.ts b/extension/manual-testing-sandbox/example.ts new file mode 100644 index 00000000..0633beaf --- /dev/null +++ b/extension/manual-testing-sandbox/example.ts @@ -0,0 +1,3 @@ +function mergeSortAlgorithm() { + // TODO: implement +}
\ No newline at end of file |