forked from bogusfocused/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 799 Bytes
/
tsconfig.json
File metadata and controls
42 lines (42 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"target": "es5",
"lib": [
"es5",
"es6",
"dom"
],
"sourceMap": true,
"baseUrl": ".",
"paths": {
/* "tldjs": [
"jslib/common/src/misc/tldjs.noop"
], */
"jslib-common/*": [
"jslib/common/src/*"
],
"jslib-angular/*": [
"jslib/angular/src/*"
],
"src/*": [
"src/*"
]
}
},
"angularCompilerOptions": {
"preserveWhitespaces": true
},
"files": [
"src/app/polyfills.ts",
"src/app/main.ts",
"bitwarden_license/src/app/main.ts"
],
"include": [
"src/connectors/*.ts",
]
}