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.
24 lines
723 B
24 lines
723 B
{ |
|
"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", "src/models/*.ts", "src/services/*.ts"] |
|
}
|
|
|