vscode/extensions/extension-editing/tsconfig.json
Matt Bierner 69056ab090 Upgrade extension-editing extension to use shared tsconfig
Use the shared tsconfig and fix a number of strict mode typing errors and null check errors
2018-10-02 10:24:19 -07:00

12 lines
165 B
JSON

{
"extends": "../shared.tsconfig.json",
"compilerOptions": {
"outDir": "./out",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*"
]
}