2018-01-04 03:20:58 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-04-22 05:14:04 +02:00
|
|
|
"pretty": true,
|
2018-01-06 16:04:16 +01:00
|
|
|
"moduleResolution": "node",
|
2020-03-11 14:00:14 +01:00
|
|
|
"noImplicitAny": true,
|
2018-04-18 18:59:48 +02:00
|
|
|
"target": "ES6",
|
|
|
|
"module": "commonjs",
|
2020-07-23 19:32:20 +02:00
|
|
|
"lib": ["es5", "es6", "es7", "dom"],
|
2018-01-06 16:04:16 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2022-07-26 14:48:11 +02:00
|
|
|
"declaration": false,
|
2018-04-18 18:59:48 +02:00
|
|
|
"outDir": "dist",
|
2021-06-03 18:58:57 +02:00
|
|
|
"baseUrl": ".",
|
2022-08-03 21:40:04 +02:00
|
|
|
"resolveJsonModule": true,
|
2021-06-03 18:58:57 +02:00
|
|
|
"paths": {
|
2022-06-14 17:10:53 +02:00
|
|
|
"@bitwarden/common/*": ["./libs/common/src/*"],
|
|
|
|
"@bitwarden/angular/*": ["./libs/angular/src/*"],
|
|
|
|
"@bitwarden/electron/*": ["./libs/electron/src/*"],
|
2022-06-17 16:23:04 +02:00
|
|
|
"@bitwarden/node/*": ["./libs/node/src/*"],
|
|
|
|
"@bitwarden/components": ["./libs/components/src"]
|
2021-06-03 18:58:57 +02:00
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"transform": "typescript-transform-paths"
|
|
|
|
}
|
2018-01-08 20:11:28 +01:00
|
|
|
]
|
2018-01-04 03:20:58 +01:00
|
|
|
},
|
2022-08-03 21:40:04 +02:00
|
|
|
"include": ["apps/web/src/**/*", "libs/*/src/**/*"],
|
|
|
|
"exclude": ["apps/web/src/**/*.spec.ts", "libs/*/src/**/*.spec.ts"]
|
2018-01-04 03:20:58 +01:00
|
|
|
}
|