diff --git a/.eslint-plugin-local/index.js b/.eslint-plugin-local/index.js index 4f34ba08012..ad00191fb6f 100644 --- a/.eslint-plugin-local/index.js +++ b/.eslint-plugin-local/index.js @@ -10,8 +10,8 @@ require('ts-node').register({ experimentalResolver: true, transpileOnly: true, compilerOptions: { - "moduleResolution": "node", - "ignoreDeprecations": "6.0", + module: 'nodenext', + moduleResolution: 'nodenext', } }); diff --git a/extensions/markdown-language-features/notebook/tsconfig.json b/extensions/markdown-language-features/notebook/tsconfig.json index 48033ed968a..ec71045301f 100644 --- a/extensions/markdown-language-features/notebook/tsconfig.json +++ b/extensions/markdown-language-features/notebook/tsconfig.json @@ -3,10 +3,8 @@ "compilerOptions": { "outDir": "./dist/", "jsx": "react", - "moduleResolution": "Node", - "ignoreDeprecations": "6.0", + "module": "esnext", "allowSyntheticDefaultImports": true, - "module": "es2020", "lib": [ "ES2024", "DOM", diff --git a/extensions/microsoft-authentication/tsconfig.json b/extensions/microsoft-authentication/tsconfig.json index 5dd64b21dd9..58a583fb0f1 100644 --- a/extensions/microsoft-authentication/tsconfig.json +++ b/extensions/microsoft-authentication/tsconfig.json @@ -2,9 +2,6 @@ "extends": "../tsconfig.base.json", "compilerOptions": { "baseUrl": ".", - "module": "commonjs", - "moduleResolution": "node", - "ignoreDeprecations": "6.0", "noFallthroughCasesInSwitch": true, "noUnusedLocals": false, "outDir": "dist", @@ -16,9 +13,6 @@ "WebWorker" ] }, - "exclude": [ - "node_modules" - ], "include": [ "src/**/*", "../../src/vscode-dts/vscode.d.ts", diff --git a/src/tsconfig.monaco.json b/src/tsconfig.monaco.json index 669abb9c332..b9e497bf275 100644 --- a/src/tsconfig.monaco.json +++ b/src/tsconfig.monaco.json @@ -8,9 +8,8 @@ "wicg-file-system-access" ], "paths": {}, - "module": "amd", - "moduleResolution": "node", - "ignoreDeprecations": "6.0", + "module": "esnext", + "moduleResolution": "bundler", "removeComments": false, "preserveConstEnums": true, "target": "ES2022",