forked from microsoft/opensource-management-portal
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
38 lines (38 loc) Β· 883 Bytes
/
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
{
"compilerOptions": {
"module": "NodeNext",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"allowJs": true,
"declaration": true,
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
"typeRoots": ["./node_modules/@types", "./typings"],
"lib": ["es2022"],
"types": ["jest"]
},
"exclude": ["**/*.test.ts", "**/*.spec.ts", "./.ossdev/**/*"],
"include": [
"./*.ts",
"./api/**/*",
"./bin/**/*",
"./business/**/*",
"./config/**/*",
"./data/**/*",
"business/entities/**/*",
"business/features/**/*",
"./interfaces/**/*",
"./jobs/**/*",
"./lib/**/*",
"./microsoft/**/*",
"./middleware/**/*",
"./routes/**/*",
"./scripts/**/*",
"./test/**/*",
"business/webhooks/**/*"
]
}