1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-12 01:48:21 +02:00
bitwarden-browser/tsconfig.json

25 lines
683 B
JSON
Raw Normal View History

2018-06-05 05:10:41 +02:00
{
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2018-06-05 15:34:08 +02:00
"module": "commonjs",
2021-12-07 20:41:45 +01:00
"target": "es2015",
2021-12-17 15:57:11 +01:00
"lib": ["es5", "es6", "dom"],
2018-06-05 05:10:41 +02:00
"sourceMap": true,
"baseUrl": ".",
"paths": {
2021-12-17 15:57:11 +01:00
"tldjs": ["jslib/common/src/misc/tldjs.noop"],
"jslib-common/*": ["jslib/common/src/*"],
"jslib-angular/*": ["jslib/angular/src/*"],
"src/*": ["src/*"]
2018-06-05 05:10:41 +02:00
}
},
2018-09-13 17:57:28 +02:00
"angularCompilerOptions": {
"preserveWhitespaces": true
},
2021-12-17 15:57:11 +01:00
"files": ["src/app/polyfills.ts", "src/app/main.ts", "bitwarden_license/src/app/main.ts"],
"include": ["src/connectors/*.ts"]
2018-06-05 05:10:41 +02:00
}