-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
74 lines (74 loc) · 2.2 KB
/
tsconfig.json
File metadata and controls
74 lines (74 loc) · 2.2 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noImplicitOverride": true,
"target": "ES2022",
"module": "NodeNext",
"lib": ["ES2022", "dom"],
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": false,
"moduleResolution": "NodeNext",
"typeRoots": ["node_modules/@types"],
"paths": {
"@hmcts/opal-frontend-common-node": [
"./src/index.ts",
],
"@hmcts/opal-frontend-common-node/launch-darkly/*": [
"./src/launch-darkly/*",
],
"@hmcts/opal-frontend-common-node/app-insights/*": [
"./src/app-insights/*",
],
"@hmcts/opal-frontend-common-node/constants": [
"./src/constants/index.ts",
],
"@hmcts/opal-frontend-common-node/interfaces/*": [
"./src/interfaces/*",
],
"@hmcts/opal-frontend-common-node/health/*": [
"./src/health/*",
],
"@hmcts/opal-frontend-common-node/helmet/*": [
"./src/helmet/*",
],
"@hmcts/opal-frontend-common-node/properties-volume/*": [
"./src/properties-volume/*",
],
"@hmcts/opal-frontend-common-node/csrf-token/*": [
"./src/csrf-token/*",
],
"@hmcts/opal-frontend-common-node/proxy/*": [
"./src/proxy/*",
],
"@hmcts/opal-frontend-common-node/proxy/opal-api-proxy/*": [
"./src/proxy/opal-api-proxy/*",
],
"@hmcts/opal-frontend-common-node/routes/*": [
"./src/routes/*",
],
"@hmcts/opal-frontend-common-node/session/*": [
"./src/session/*",
],
"@hmcts/opal-frontend-common-node/session/session-expiry/*": [
"./src/session/session-expiry/*",
],
"@hmcts/opal-frontend-common-node/session/session-storage/*": [
"./src/session/session-storage/*",
]
}
},
"include": ["src", "src/index.ts"],
"exclude": ["node_modules", "dist", "src/**/*.spec.ts"]
}