mirror of
https://github.com/bitwarden/directory-connector
synced 2026-01-07 19:13:31 +00:00
* Split jslib * Change hook to preinstall * Install gyp (ci) * Fix rebuild command * Review comments * Add tsconfig-paths-plugin to webpack.cli. * Bump jslib * Install old version of prebuild-install to bypass bug in pkg
40 lines
781 B
JSON
40 lines
781 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "es6",
|
|
"target": "ES2016",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": [],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"tldjs": [
|
|
"jslib/src/misc/tldjs.noop"
|
|
],
|
|
"jslib-common/*": [
|
|
"jslib/common/src/*"
|
|
],
|
|
"jslib-angular/*": [
|
|
"jslib/angular/src/*"
|
|
],
|
|
"jslib-electron/*": [
|
|
"jslib/electron/src/*"
|
|
],
|
|
"jslib-node/*": [
|
|
"jslib/node/src/*"
|
|
]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"preserveWhitespaces": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"src-cli"
|
|
]
|
|
}
|