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

28 lines
620 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-04-04 15:19:39 +02:00
"jslib/*": [ "jslib/src/*" ],
"@angular/*": [ "node_modules/@angular/*" ],
"angular2-toaster": [ "node_modules/angular2-toaster" ],
"angulartics2": [ "node_modules/angulartics2" ]
2018-01-16 20:48:34 +01:00
}
},
"exclude": [
"node_modules",
2018-02-24 05:11:42 +01:00
"jslib/node_modules",
2018-01-16 20:48:34 +01:00
"dist",
2018-02-24 05:11:42 +01:00
"jslib/dist",
2018-01-16 20:48:34 +01:00
"build"
]
}