forked from wednesday-solutions/nodejs-hapi-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsconfig.json
More file actions
27 lines (27 loc) · 703 Bytes
/
jsconfig.json
File metadata and controls
27 lines (27 loc) · 703 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
{
"compilerOptions": {
"target": "ES6",
"module": "NodeNext",
"allowJs": true,
"checkJs": true,
"baseUrl": "./",
"moduleResolution": "node",
"resolveJsonModule": true,
"paths": {
"@root": ["./"],
"@utils": ["./utils"],
"@utils/*": ["./utils/*"],
"@config": ["./config"],
"@config/*": ["./config/*"],
"@plugins": ["./plugins"],
"@plugins/*": ["./plugins/*"],
"@services": ["./lib/services"],
"@services/*": ["./lib/services/*"],
"@models": ["./lib/models"],
"@daos": ["./lib/daos"],
"@daos/*": ["./lib/daos/*"],
"@routes": ["./lib/routes"]
},
"typeRoots": ["test.globals.d.ts"]
}
}