bitwarden-desktop/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
578 B
JSON
Raw Permalink Normal View History

2018-01-16 20:48:34 +01:00
{
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": true,
2018-01-23 05:37:36 +01:00
"emitDecoratorMetadata": true,
2018-01-16 20:48:34 +01:00
"experimentalDecorators": true,
"module": "es6",
"target": "ES2016",
"sourceMap": true,
"types": [],
2018-01-16 20:48:34 +01:00
"baseUrl": ".",
"paths": {
"tldjs": ["jslib/common/src/misc/tldjs.noop"],
"jslib-common/*": ["jslib/common/src/*"],
"jslib-angular/*": ["jslib/angular/src/*"],
"jslib-electron/*": ["jslib/electron/src/*"]
2018-01-16 20:48:34 +01:00
}
},
2018-09-13 18:04:04 +02:00
"angularCompilerOptions": {
"preserveWhitespaces": true
},
"include": ["src"]
2018-01-16 20:48:34 +01:00
}