mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
34 lines
642 B
JSON
34 lines
642 B
JSON
{
|
|
"compilerOptions": {
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"target": "ES2016",
|
|
"module": "es6",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"jslib/*": [
|
|
"jslib/src/*"
|
|
]
|
|
},
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"jslib/node_modules",
|
|
"dist",
|
|
"jslib/dist",
|
|
"jslib/spec",
|
|
"jslib/src/electron",
|
|
"jslib/src/angular",
|
|
"jslib/src/services/notifications.service.ts",
|
|
"build"
|
|
]
|
|
}
|