-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.23 KB
/
Copy pathtsconfig.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"compilerOptions": {
"target": "ES2023",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"exactOptionalPropertyTypes": true,
"resolveJsonModule": true,
"noEmit": true,
"stripInternal": true,
"rootDirs": ["./src", "./scripts", "./tests/e2e", "./tests/audit"],
"paths": {
"#apiCatalog": ["./src/collection.patternFlyApi.json"],
"#docsCatalog": ["./src/docs.json"],
"#toolsHost": ["./src/server.toolsHost.ts"],
"#workerEntry": ["./src/server.workerEntry.ts"],
"#collectionPatternFlyApi": ["./src/collection.patternFlyApi.ts"]
}
},
"include": [
"src/**/*",
"tests/**/*",
"scripts/**/*",
"jest.setupTests.ts",
"jest.config.ts",
"types/**/*.d.ts",
"docs/**/*.ts"
],
"exclude": [
"node_modules",
"dist"
]
}