Files
typebox/tsconfig.json
Haydn Paterson 6cf8596c3a Revision 0.33.22 (#1065)
* Remove Parse from Top Level Import

* Rename Parse submodule to Syntax

* Export Parse Inference Types

* ChangeLog

* Version
2024-11-09 23:09:10 +09:00

18 lines
568 B
JSON

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