mirror of https://github.com/bitwarden/web.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
793 B
42 lines
793 B
{ |
|
"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/*" |
|
], |
|
"src/*": [ |
|
"src/*" |
|
] |
|
} |
|
}, |
|
"angularCompilerOptions": { |
|
"preserveWhitespaces": true |
|
}, |
|
"files": [ |
|
"src/app/polyfills.ts", |
|
"src/app/main.ts", |
|
"bitwarden_license/src/app/main.ts" |
|
], |
|
"include": [ |
|
"src/connectors/*.ts", |
|
] |
|
}
|
|
|