-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 830 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 830 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
// ------------------------------------------------------------------
// TypeScript-7: Strict Required
// ------------------------------------------------------------------
{
"compilerOptions": {
"strict": true,
"target": "ES2020",
"module": "ESNext",
"noEmit": true,
"allowImportingTsExtensions": true,
"exactOptionalPropertyTypes": true,
"paths": {
"typebox/compile": ["./src/compile/index.ts"],
"typebox/errors": ["./src/errors/index.ts"],
"typebox/format": ["./src/format/index.ts"],
"typebox/guard": ["./src/guard/index.ts"],
"typebox/schema": ["./src/schema/index.ts"],
"typebox/system": ["./src/system/index.ts"],
"typebox/type": ["./src/type/index.ts"],
"typebox/value": ["./src/value/index.ts"],
"typebox": ["./src/index.ts"]
}
}
}