generated from hmcts/expressjs-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (44 loc) · 1.26 KB
/
tsconfig.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"module": "commonjs",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "ES2020",
"strict": true,
"noImplicitAny": true,
"noImplicitThis": false,
"moduleResolution": "node",
"noUnusedLocals": true,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false,
"skipLibCheck": true,
"lib": ["es2020", "dom", "dom.iterable"],
"baseUrl": "src/main",
"paths": {
"app/*": ["app/*"],
"interfaces/*": ["main/interfaces/*"],
"router/*": ["router/*"],
"routes/*": ["routes/*"],
"steps": ["steps/index.ts"],
"@modules/*": ["modules/*"],
"@services/*": ["services/*"],
"@utils/*": ["utils/*"]
},
"typeRoots": ["./node_modules/@types", "./src/types"],
"types": ["jest", "node", "express", "express-session"]
},
"include": [
"src/main/**/*",
"src/types/**/*",
"src/main/assets/locales/**/*",
"src/types/global.d.ts",
"src/test/unit/middleware/oidc.test.ts"
],
"exclude": ["**/*.test.ts", "**/codecept.conf.ts", "**/__mocks__/*", "src/test/**/*", "**/*.spec.ts", "**/*.e2e.ts"],
"ts-node": {
"files": true
}
}