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 4a61f0ac04
Cleanup tsconfig (#954)
* Cleanup tsconfig

* Removed dummy module
2021-05-05 09:46:14 +02:00

32 lines
538 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/src/misc/tldjs.noop"
],
"jslib/*": [
"jslib/src/*"
]
}
},
"angularCompilerOptions": {
"preserveWhitespaces": true
},
"include": [
"src"
]
}