mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
* Make native-messaging-test-runner use desktop_proxy * Remove node-ipc * Fix build and implement proxy selection * Remove eslint disable --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
28 lines
759 B
JSON
28 lines
759 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "dist",
|
|
"target": "es6",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": false,
|
|
"declaration": false,
|
|
"paths": {
|
|
"@src/*": ["src/*"],
|
|
"@bitwarden/admin-console/*": ["../../../libs/admin-console/src/*"],
|
|
"@bitwarden/auth/*": ["../../../libs/auth/src/*"],
|
|
"@bitwarden/common/*": ["../../../libs/common/src/*"],
|
|
"@bitwarden/key-management": ["../../../libs/key-management/src/"],
|
|
"@bitwarden/node/*": ["../../../libs/node/src/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-strict-plugin"
|
|
}
|
|
]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|