mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
84af4ee48f
The styling got adjusted to stay as close as possible to the original sweetalert1 styles. The only visible change is the button order, it is the same as in the web-vault now (OK - CANCEL instead of CANCEL - OK) - Removed old postinstall gulp hack - Added tsconfig type definition for sweetalert2 module typing.
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "es6",
|
|
"target": "ES2016",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"types": ["sweetalert2"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"tldjs": [
|
|
"jslib/src/misc/tldjs.noop"
|
|
],
|
|
"jslib/*": [
|
|
"jslib/src/*"
|
|
],
|
|
"@angular/*": [
|
|
"node_modules/@angular/*"
|
|
],
|
|
"electron": [
|
|
"node_modules/electron"
|
|
],
|
|
"electron-log": [
|
|
"node_modules/electron-log"
|
|
],
|
|
"electron-store": [
|
|
"node_modules/electron-store"
|
|
],
|
|
"node": [
|
|
"node_modules/@types/node"
|
|
],
|
|
"duo_web_sdk": [
|
|
"node_modules/duo_web_sdk"
|
|
]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"preserveWhitespaces": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"jslib/node_modules",
|
|
"dist",
|
|
"jslib/dist",
|
|
"build",
|
|
"jslib/spec",
|
|
"jslib/src/cli",
|
|
"jslib/src/services/nodeApi.service.ts",
|
|
"jslib/src/services/lowdbStorage.service.ts"
|
|
]
|
|
}
|