- 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)
18 lines
609 B
JSON
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"],
|
|
}
|
|
}
|
|
} |