mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
Adds an example extension for custom editors. This example extension shows two custom editors: one for text and one for binary files
12 lines
195 B
JSON
12 lines
195 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"rootDir": "src"
|
|
},
|
|
"exclude": ["node_modules", ".vscode-test"]
|
|
}
|