mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-15 21:01:05 +01:00
fbdf54506e
This adds a propose api for computing the diff between two files. Custom diff editors can use this to make sure they have the same diffs that VS Code would use in it's built-in diff editor
18 lines
375 B
JSON
18 lines
375 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./out",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"../../src/vscode-dts/vscode.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.customEditorDiffs.d.ts",
|
|
"../../src/vscode-dts/vscode.proposed.documentDiff.d.ts"
|
|
]
|
|
}
|