forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.test.json
More file actions
26 lines (25 loc) · 964 Bytes
/
tsconfig.test.json
File metadata and controls
26 lines (25 loc) · 964 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
{
// Used by build.spec.ts to compile this package with multiple TS versions (5.4-5.9).
// Includes src/**/* (not just test/) because the test verifies that the package's
// exports type-check correctly across TS versions with skipLibCheck: false.
"include": ["src/**/*"],
// Cross-package schema files produce .d.ts with intentionally broken import paths
// (documenting a known tree export bug). Exclude them so the multi-version build
// tests aren't affected.
"exclude": ["src/crossPackage/**/*", "src/test/crossPackage/**/*"],
"compilerOptions": {
"target": "es2022",
"module": "Node16",
"strict": true,
"skipLibCheck": false,
"incremental": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"lib": ["ES2022", "DOM"],
// The pretty formatting seems to make it through how we log these errors, so keep it on.
"pretty": true,
},
}