1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-25 13:08:52 +01:00

34 lines
642 B
JSON
Raw Normal View History

2018-05-12 15:12:28 -04:00
{
"compilerOptions": {
2018-05-12 21:24:28 -04:00
"pretty": true,
"moduleResolution": "node",
2018-05-14 23:16:59 -04:00
"target": "ES2016",
"module": "es6",
2018-05-12 15:12:28 -04:00
"noImplicitAny": true,
2018-07-25 09:58:01 -04:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-05-12 15:12:28 -04:00
"allowJs": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"jslib/*": [
"jslib/src/*"
]
2018-05-13 00:19:14 -04:00
},
"typeRoots": [
"node_modules/@types"
]
2018-05-12 15:12:28 -04:00
},
"exclude": [
"node_modules",
"jslib/node_modules",
"dist",
"jslib/dist",
"jslib/spec",
"jslib/src/electron",
2018-05-14 23:16:59 -04:00
"jslib/src/angular",
2018-08-20 22:22:17 -04:00
"jslib/src/services/notifications.service.ts",
2018-05-16 16:18:33 -04:00
"build"
2018-05-12 15:12:28 -04:00
]
}