1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-06 18:43:25 +00:00

stub out angular app with webpack

This commit is contained in:
Kyle Spearrin
2018-01-16 14:48:34 -05:00
parent 16b7607160
commit a7994f7ebc
12 changed files with 315 additions and 0 deletions

21
tsconfig.json Normal file
View File

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