Files
vscode-extension-samples/custom-editor-sample/tsconfig.json
Matt Bierner 1a6bac6dd9 Add custom editor example extensions
Adds an example extension for custom editors. This example extension shows two custom editors: one for text and one for binary files
2020-03-24 17:00:57 -07:00

12 lines
195 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"sourceMap": true,
"strict": true,
"rootDir": "src"
},
"exclude": ["node_modules", ".vscode-test"]
}