24 lines
686 B
JSON
24 lines
686 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/common/spec": ["../../libs/common/spec"],
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
"@bitwarden/importer": ["../../libs/importer/src"],
|
|
"@bitwarden/exporter/*": ["../../libs/exporter/src/*"],
|
|
"@bitwarden/node/*": ["../../libs/node/src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "src/**/*.spec.ts"]
|
|
}
|