diff options
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 |