2024-05-15 16:09:24 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"pretty": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "ES2016",
|
|
|
|
"module": "es6",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@bitwarden/cli/*": ["../../apps/cli/src/*"],
|
|
|
|
"@bitwarden/common/spec": ["../../libs/common/spec"],
|
|
|
|
"@bitwarden/auth/common": ["../../libs/auth/src/common"],
|
|
|
|
"@bitwarden/auth/angular": ["../../libs/auth/src/angular"],
|
|
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
|
|
"@bitwarden/importer/core": ["../../libs/importer/src"],
|
|
|
|
"@bitwarden/vault-export-core": [
|
|
|
|
"../../libs/tools/export/vault-export/vault-export-core/src"
|
|
|
|
],
|
2024-06-03 02:52:19 +02:00
|
|
|
"@bitwarden/node/*": ["../../libs/node/src/*"],
|
|
|
|
"@bitwarden/bit-common/*": ["../../bitwarden_license/bit-common/src/*"]
|
2024-05-15 16:09:24 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": ["src", "src/**/*.spec.ts"]
|
|
|
|
}
|