1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-21 22:23:52 +02:00
bitwarden-browser/tsconfig.json
Oscar Hinton b12d0387f6
Add jslib as a "real" dependency (#951)
* 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
2021-06-07 20:13:58 +02:00

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",
]
}