1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00
bitwarden-browser/tsconfig.json
Oscar Hinton 1016bbfb9e
Split jslib into multiple modules (#363)
* Split jslib into multiple modules
2021-06-03 18:58:57 +02:00

45 lines
863 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"
}
]
},
"include": [
"spec"
],
"exclude": [
"node_modules",
"dist"
]
}