separete ts config for extension.

This commit is contained in:
Peng Lyu
2018-05-19 14:28:20 -07:00
parent 400f9ed41a
commit 394a457349
3 changed files with 34 additions and 11 deletions

21
tsconfig.extension.json Normal file
View File

@ -0,0 +1,21 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "build",
"lib": [
"es6",
"dom"
],
"sourceMap": true,
"rootDir": ".",
"strict": true
},
"include": [
"ext-src"
],
"exclude": [
"node_modules",
".vscode-test"
]
}