bitwarden-desktop/tsconfig.json

22 lines
396 B
JSON
Raw Normal View History

2018-01-16 20:48:34 +01:00
{
"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"
]
}