1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-30 11:15:36 +02:00
bitwarden-browser/tsconfig.json

27 lines
455 B
JSON
Raw Normal View History

{
"compilerOptions": {
2018-01-08 22:48:05 +01:00
"moduleResolution": "node",
"noImplicitAny": true,
2018-01-08 22:48:05 +01:00
"module": "es6",
"target": "ES2016",
"allowJs": true,
"sourceMap": true,
"types": [
"jasmine"
2018-01-09 20:26:20 +01:00
],
"baseUrl": ".",
"paths": {
"jslib/*": [ "node_modules/@bitwarden/jslib/src/*" ]
}
},
"exclude": [
"node_modules",
2017-11-23 03:22:40 +01:00
"dist",
"build",
2018-01-12 04:17:46 +01:00
"build.safariextension",
2017-11-23 03:22:40 +01:00
"coverage",
"store",
"src/edge"
]
}