-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (56 loc) · 2.08 KB
/
tsconfig.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"module": "esnext",
"target": "es5",
"sourceMap": true,
"types": [
"jest",
"node",
],
"suppressImplicitAnyIndexErrors": true,
"lib": ["es2017", "es2015.promise", "dom"],
"resolveJsonModule": true,
"removeComments": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"importHelpers": true,
"typeRoots": ["node_modules/@types"],
"paths": {
"bobjoll/*": ["*"],
"BobjollAccordion": ["ts/partials/accordion-v1.0"],
"BobjollAlert": ["ts/partials/alert-v1.0"],
"BobjollCopy": ["ts/partials/copy-v1.0"],
"BobjollDropdown": ["ts/partials/dropdown-v1.0"],
"BobjollExpandable": ["ts/partials/expandable-v1.0"],
"BobjollFeedback": ["ts/partials/feedback-v1.0"],
"BobjollModal": ["ts/partials/modal-v1.0"],
"BobjollNotifications": ["ts/partials/notifications-v1.1"],
"BobjollNotify": ["ts/partials/notify-v1.0"],
"BobjollPassword": ["ts/partials/password-v1.0"],
"BobjollPopover": ["ts/partials/popover-v1.0"],
"BobjollScrollable": ["ts/partials/scrollable-v1.0"],
"BobjollTabs": ["ts/partials/tabs-v1.0"],
"BobjollTags": ["ts/partials/tags-v1.0"],
"BobjollTemplate/*": ["ts/views/hbs/*"],
"BobjollTrigger": ["ts/partials/trigger-v2.0"],
"BobjollUpload": ["ts/partials/upload-v1.0"],
"BobjollView": ["ts/partials/hbs-v1.0"],
"Project": ["jest-mocks/*"],
"Settings": ["ts/library/settings"]
},
},
"include": ["ts/**/*.ts"],
"exclude": [
"ts/**/*.spec.ts",
"node_modules"
]
}