bitwarden-estensione-browser/apps/desktop/tsconfig.json

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

24 lines
598 B
JSON
Raw 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": {
2022-06-03 18:01:07 +02:00
"tldjs": ["../../libs/common/src/misc/tldjs.noop"],
"jslib-common/*": ["../../libs/common/src/*"],
"jslib-angular/*": ["../../libs/angular/src/*"],
"jslib-electron/*": ["../../libs/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
}