mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
b14bb92d78
* Create bit-cli folder with configs * Add bit-cli to workspace * Refactor CLI app structure * services are managed by the ServiceContainer * programs are registered by register(Oss|Bit)Program * the app is bootstrapped by Main * Reapply changes from #9099 * Reapply changes from #8604 * Reapply changes from #9115
29 lines
929 B
JSON
29 lines
929 B
JSON
{
|
|
"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"
|
|
],
|
|
"@bitwarden/node/*": ["../../libs/node/src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "src/**/*.spec.ts"]
|
|
}
|