1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-28 03:59:50 +01:00

52 lines
1021 B
JSON
Raw Normal View History

2018-06-04 23:10:41 -04:00
{
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-06-05 09:34:08 -04:00
"module": "commonjs",
"target": "es5",
2018-09-13 11:57:28 -04:00
"lib": [
"es5",
"es6",
"dom"
],
2018-06-04 23:10:41 -04:00
"allowJs": true,
"sourceMap": true,
"types": [],
"baseUrl": ".",
"paths": {
2018-10-13 23:26:38 -04:00
"tldjs": [
"jslib/src/misc/tldjs.noop"
],
2018-09-13 11:57:28 -04:00
"jslib/*": [
"jslib/src/*"
],
"@angular/*": [
"node_modules/@angular/*"
],
"node": [
"node_modules/@types/node"
2018-12-18 17:19:55 -05:00
],
"duo_web_sdk": [
"node_modules/duo_web_sdk"
2018-09-13 11:57:28 -04:00
]
2018-06-04 23:10:41 -04:00
}
},
2018-09-13 11:57:28 -04:00
"angularCompilerOptions": {
"preserveWhitespaces": true
},
2018-06-04 23:10:41 -04:00
"exclude": [
"node_modules",
"dist",
"build",
2018-09-11 17:30:44 -04:00
"jslib/node_modules",
2018-06-05 13:31:25 -04:00
"jslib/dist",
"jslib/spec",
"jslib/src/electron",
"jslib/src/services/nodeApi.service.ts",
"jslib/src/services/lowdbStorage.service.ts",
2018-06-05 15:02:53 -04:00
"jslib/src/misc/nodeUtils.ts",
2018-06-04 23:10:41 -04:00
]
}