mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
33 lines
945 B
JSON
33 lines
945 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"lib": ["es5", "es6", "es7", "dom"],
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declaration": false,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"@bitwarden/common/*": ["./libs/common/src/*"],
|
|
"@bitwarden/angular/*": ["./libs/angular/src/*"],
|
|
"@bitwarden/electron/*": ["./libs/electron/src/*"],
|
|
"@bitwarden/node/*": ["./libs/node/src/*"],
|
|
"@bitwarden/components": ["./libs/components/src"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"transform": "typescript-transform-paths"
|
|
}
|
|
]
|
|
},
|
|
"include": ["apps/web/src/**/*", "libs/*/src/**/*"],
|
|
"exclude": ["apps/web/src/**/*.spec.ts", "libs/*/src/**/*.spec.ts"]
|
|
}
|