mirror of
https://github.com/bitwarden/browser
synced 2024-12-18 20:33:00 +01:00
b12d0387f6
* Add jslib as a dependency * Cleanup tsconfig, webpack, add jslib-angular to package.json * Update all import paths * Add back @types/node. * Lint * Remove dummy module * Remove merge conflict * Group imports * Bump jslib
39 lines
710 B
JSON
39 lines
710 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": [
|
|
"es5",
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"tldjs": [
|
|
"jslib/common/src/misc/tldjs.noop"
|
|
],
|
|
"jslib-common/*": [
|
|
"jslib/common/src/*"
|
|
],
|
|
"jslib-angular/*": [
|
|
"jslib/angular/src/*"
|
|
]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"preserveWhitespaces": true
|
|
},
|
|
"files": [
|
|
"src/app/polyfills.ts",
|
|
"src/app/main.ts"
|
|
],
|
|
"include": [
|
|
"src/connectors/*.ts",
|
|
]
|
|
}
|