mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
31 lines
756 B
JSON
31 lines
756 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"lib": ["es5", "es6", "es7", "dom"],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declarationDir": "dist/types",
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"jslib-common/*": ["common/src/*"],
|
|
"jslib-angular/*": ["angular/src/*"],
|
|
"jslib-electron/*": ["electron/src/*"],
|
|
"jslib-node/*": ["node/src/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"transform": "typescript-transform-paths"
|
|
}
|
|
]
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|