1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-28 12:09:36 +01:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
570 B
JSON
Raw Normal View History

2018-05-12 15:12:28 -04:00
{
"compilerOptions": {
2018-05-12 21:24:28 -04:00
"pretty": true,
"moduleResolution": "node",
2018-05-14 23:16:59 -04:00
"target": "ES2016",
"module": "es6",
2018-05-12 15:12:28 -04:00
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
2018-07-25 09:58:01 -04:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-05-12 15:12:28 -04:00
"allowJs": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@bitwarden/common/spec/*": ["../../libs/common/spec/*"],
2022-06-14 17:10:53 +02:00
"@bitwarden/common/*": ["../../libs/common/src/*"],
"@bitwarden/node/*": ["../../libs/node/src/*"]
}
2018-05-12 15:12:28 -04:00
},
"include": ["src", "src/**/*.spec.ts"]
2018-05-12 15:12:28 -04:00
}