mirror of
https://github.com/bitwarden/browser
synced 2024-12-18 20:33:00 +01:00
0dd1aeba9f
* Import libs/importer and instantiate ImportService * Create ImportApi and ImportService factories * Add libs/importer to desktop * [PM-4075] Setup Feature Flag for Browser Fileless Import (#6391) * Update apps/browser/src/tools/background/service_factories/import-api-service.factory.ts Co-authored-by: ✨ Audrey ✨ <ajensen@bitwarden.com> * Created non-exported ServiceCache-type for ImportApiServiceFactory --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com> Co-authored-by: Cesar Gonzalez <cesar.a.gonzalezcs@gmail.com> Co-authored-by: ✨ Audrey ✨ <ajensen@bitwarden.com>
29 lines
905 B
JSON
29 lines
905 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "ES2020",
|
|
"target": "ES2016",
|
|
"sourceMap": true,
|
|
"types": [],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"],
|
|
"@bitwarden/auth": ["../../libs/auth/src"],
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
"@bitwarden/components": ["../../libs/components/src"],
|
|
"@bitwarden/exporter/*": ["../../libs/exporter/src/*"],
|
|
"@bitwarden/importer": ["../../libs/importer/src"],
|
|
"@bitwarden/vault": ["../../libs/vault/src"]
|
|
},
|
|
"useDefineForClassFields": false
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"preserveWhitespaces": true
|
|
},
|
|
"include": ["src", "../../libs/common/src/platform/services/**/*.worker.ts"]
|
|
}
|