2017-10-29 03:14:14 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-01-08 16:48:05 -05:00
|
|
|
"moduleResolution": "node",
|
2017-10-29 03:14:14 +01:00
|
|
|
"noImplicitAny": true,
|
2018-04-03 22:14:54 -04:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2018-01-08 16:48:05 -05:00
|
|
|
"module": "es6",
|
2017-10-29 03:14:14 +01:00
|
|
|
"target": "ES2016",
|
|
|
|
"allowJs": true,
|
2017-11-17 22:33:58 +01:00
|
|
|
"sourceMap": true,
|
2018-01-09 14:26:20 -05:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2022-06-14 17:10:53 +02:00
|
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"]
|
2018-01-09 14:26:20 -05:00
|
|
|
}
|
2017-10-29 03:14:14 +01:00
|
|
|
},
|
2018-09-13 12:04:07 -04:00
|
|
|
"angularCompilerOptions": {
|
2021-05-21 12:44:25 +10:00
|
|
|
"preserveWhitespaces": true
|
2018-09-13 12:04:07 -04:00
|
|
|
},
|
2021-12-21 15:43:35 +01:00
|
|
|
"include": ["src"]
|
2017-10-29 03:14:14 +01:00
|
|
|
}
|