Files
typebox/tsconfig.json
glm-5.1 bd758c2342 Fork from @sinclair/typebox 0.34.49 as @alkdev/typebox
- Rename package from @sinclair/typebox to @alkdev/typebox
- Update author, repository, and homepage to alkdev
- Remove GitHub workflows, .vscode config, and branding assets
- Update all source, test, example, changelog, and task imports
- Update tsconfig.json path mappings
- Clean up readme header (remove upstream badges/branding)
2026-04-23 13:22:31 +00:00

18 lines
609 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ES2020",
"module": "Node16",
"moduleResolution": "Node16",
"paths": {
"@alkdev/typebox/compiler": ["./src/compiler/index.ts"],
"@alkdev/typebox/errors": ["./src/errors/index.ts"],
"@alkdev/typebox/parser": ["./src/parser/index.ts"],
"@alkdev/typebox/syntax": ["./src/syntax/index.ts"],
"@alkdev/typebox/system": ["./src/system/index.ts"],
"@alkdev/typebox/type": ["./src/type/index.ts"],
"@alkdev/typebox/value": ["./src/value/index.ts"],
"@alkdev/typebox": ["./src/index.ts"],
}
}
}