1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-24 10:14:52 +02:00
bitwarden-desktop/tsconfig.json

23 lines
407 B
JSON
Raw Normal View History

2018-01-16 20:48:34 +01:00
{
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": true,
2018-01-23 05:37:36 +01:00
"emitDecoratorMetadata": true,
2018-01-16 20:48:34 +01:00
"experimentalDecorators": true,
"module": "es6",
"target": "ES2016",
"allowJs": true,
"sourceMap": true,
"types": [],
"baseUrl": ".",
"paths": {
2018-02-19 22:06:26 +01:00
"jslib/*": [ "jslib/src/*" ]
2018-01-16 20:48:34 +01:00
}
},
"exclude": [
"node_modules",
"dist",
"build"
]
}