mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-19 17:58:39 +00:00
* Experiment with adding ata using `@types` packages shipped in an extension * Use own file system instead of `https` * JS/TS type support on web * Tsconfig needs esModuleInterop not module:nodenext We actually want webpack to emit commonjs, but need to write ES default imports to use node-maintainer * fix package.json indentation * Adding setting to disable web type acquisition * Fix merge of yarn lock * Fixing merge errors * Fixing errors * Pick up package externally * Fixing conflicts * Bump version --------- Co-authored-by: Kat Marchán <kzm@zkat.tech> Co-authored-by: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com>
17 lines
307 B
JSON
17 lines
307 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"../../src/vscode-dts/vscode.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.workspaceTrust.d.ts",
|
|
]
|
|
}
|