bitwarden-estensione-browser/apps/cli/tsconfig.json

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 21:12:28 +02:00
{
"compilerOptions": {
2018-05-13 03:24:28 +02:00
"pretty": true,
"moduleResolution": "node",
2018-05-15 05:16:59 +02:00
"target": "ES2016",
"module": "es6",
2018-05-12 21:12:28 +02:00
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
2018-07-25 15:58:01 +02:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-05-12 21:12:28 +02: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 21:12:28 +02:00
},
"include": ["src", "src/**/*.spec.ts"]
2018-05-12 21:12:28 +02:00
}