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.
48 lines
954 B
48 lines
954 B
{ |
|
"compilerOptions": { |
|
"moduleResolution": "node", |
|
"noImplicitAny": true, |
|
"emitDecoratorMetadata": true, |
|
"experimentalDecorators": true, |
|
"module": "commonjs", |
|
"target": "es5", |
|
"lib": [ |
|
"es5", |
|
"es6", |
|
"dom" |
|
], |
|
"allowJs": true, |
|
"sourceMap": true, |
|
"types": [], |
|
"baseUrl": ".", |
|
"paths": { |
|
"tldjs": [ |
|
"jslib/src/misc/tldjs.noop" |
|
], |
|
"jslib/*": [ |
|
"jslib/src/*" |
|
], |
|
"@angular/*": [ |
|
"node_modules/@angular/*" |
|
], |
|
"node": [ |
|
"node_modules/@types/node" |
|
] |
|
} |
|
}, |
|
"angularCompilerOptions": { |
|
"preserveWhitespaces": true |
|
}, |
|
"exclude": [ |
|
"node_modules", |
|
"dist", |
|
"build", |
|
"jslib/node_modules", |
|
"jslib/dist", |
|
"jslib/spec", |
|
"jslib/src/electron", |
|
"jslib/src/services/nodeApi.service.ts", |
|
"jslib/src/services/lowdbStorage.service.ts", |
|
"jslib/src/misc/nodeUtils.ts", |
|
] |
|
}
|
|
|