mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
25 lines
683 B
JSON
25 lines
683 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"target": "es2015",
|
|
"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/*"],
|
|
"src/*": ["src/*"]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"preserveWhitespaces": true
|
|
},
|
|
"files": ["src/app/polyfills.ts", "src/app/main.ts", "bitwarden_license/src/app/main.ts"],
|
|
"include": ["src/connectors/*.ts"]
|
|
}
|