diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-08-07 19:32:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-07 19:32:55 -0700 |
commit | de1bea106850c6ad4f7d6447faa434b953a462e8 (patch) | |
tree | 9c270065157e7611519ef2af8ff1e272a4ac728b /extension/tsconfig.json | |
parent | 34157ba9c6de24a5321b81716d31bc89e8b96471 (diff) | |
parent | d8f5f102f6f91487be0281316e581858ec4ca260 (diff) | |
download | sncontinue-de1bea106850c6ad4f7d6447faa434b953a462e8.tar.gz sncontinue-de1bea106850c6ad4f7d6447faa434b953a462e8.tar.bz2 sncontinue-de1bea106850c6ad4f7d6447faa434b953a462e8.zip |
Merge pull request #356 from bra1nDump/fix-testing
Fixed Mocha tests + added debugging configurations to vscode
Diffstat (limited to 'extension/tsconfig.json')
-rw-r--r-- | extension/tsconfig.json | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/extension/tsconfig.json b/extension/tsconfig.json index 766b21cc..847e53a0 100644 --- a/extension/tsconfig.json +++ b/extension/tsconfig.json @@ -2,8 +2,15 @@ "compilerOptions": { "module": "commonjs", "target": "ES2020", - "outDir": "out", - "lib": ["ES2020", "dom", "es6", "es5", "dom.iterable", "scripthost"], + "outDir": "out/tsc/src", + "lib": [ + "ES2020", + "dom", + "es6", + "es5", + "dom.iterable", + "scripthost" + ], "sourceMap": true, "rootDir": "src", "strict": true /* enable all strict type-checking options */, @@ -11,7 +18,10 @@ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ // "noUnusedParameters": true, /* Report errors on unused parameters. */ + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, "resolveJsonModule": true /* Enable importing .json files */ }, - "include": ["src/**/*"] -} + "include": [ + "src/**/*", + ] +}
\ No newline at end of file |