-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·23 lines (23 loc) · 731 Bytes
/
tsconfig.json
File metadata and controls
executable file
·23 lines (23 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"compilerOptions": {
"module": "CommonJS",
"declaration": true,
"declarationMap": false,
"sourceMap": false,
"removeComments": false,
"strict": true,
"target": "ES2022",
"outDir": "./dist",
"baseUrl": "./",
"incremental": false,
"skipLibCheck": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"paths": {
"@bcms/selfhosted-utils/*": ["./backend/src/_utils/*"],
"@bcms/selfhosted-backend/_server": ["./backend/src/_server"],
"@bcms/selfhosted-backend/_server/*": ["./backend/src/_server/*"]
}
},
"include": ["_scripts", "backend/src/_utils/**/*.ts"]
}