mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 13:40:25 +00:00
Affects #139247 This PR changes Emmet to use inline completions when suggesting completions. It also provides a boolean setting so that users can opt out. This PR does not change the "Wrap with Abbreviation" behaviour in Emmet. Co-authored-by: Henning Dieterichs <notify.henning.dieterichs@live.de>
16 lines
277 B
JSON
16 lines
277 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
],
|
|
"include": [
|
|
"src/**/*",
|
|
"../../src/vscode-dts/vscode.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.inlineCompletionsNew.d.ts",
|
|
]
|
|
}
|