change dir of cellAttachmentRenderer (#157671)

* change dir of cellAttachmentRenderer

* add new directories to `.vscodeignore`

* add the .js directories back in...

* hopefully now understanding `.vscodeignore`
This commit is contained in:
Michael Lively 2022-08-09 11:00:24 -07:00 committed by GitHub
parent a2a836aebf
commit 38477bf5f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
.vscode/**
src/**
notebook-src/**
out/**
tsconfig.json
extension.webpack.config.js

View File

@ -18,7 +18,7 @@ if (outputRootIndex >= 0) {
outputRoot = args[outputRootIndex + 1];
}
const srcDir = path.join(__dirname, 'src');
const srcDir = path.join(__dirname, 'notebook-src');
const outDir = path.join(outputRoot, 'notebook-out');
async function build() {