tsconfig for building main without webpack

This commit is contained in:
Kyle Spearrin 2018-01-23 15:08:21 -05:00
parent 268ec9960e
commit 95e6d0b92d
1 changed files with 24 additions and 0 deletions

24
tsconfig.main.json Normal file
View File

@ -0,0 +1,24 @@
{
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": true,
//"module": "es6",
//"target": "ES2016",
"allowJs": true,
"sourceMap": false,
"types": [],
"baseUrl": ".",
"paths": {
"jslib/*": [ "node_modules/@bitwarden/jslib/src/*" ]
},
"outDir": "build"
},
"files": [
"src/main.ts"
],
"exclude": [
"node_modules",
"dist",
"build"
]
}