mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-17 07:13:45 +01:00
20 lines
303 B
JSON
20 lines
303 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./out",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
],
|
|
"include": [
|
|
"src/**/*",
|
|
"../../src/vscode-dts/vscode.d.ts"
|
|
]
|
|
}
|