mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
29 lines
539 B
JSON
29 lines
539 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"jslib/*": [
|
|
"jslib/src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"jslib/node_modules",
|
|
"dist",
|
|
"jslib/dist",
|
|
"jslib/spec",
|
|
"jslib/src/electron",
|
|
"jslib/src/angular/components/modal.component.ts",
|
|
"jslib/src/angular/dummy.module.ts",
|
|
"build"
|
|
]
|
|
}
|