This commit is contained in:
sinclair
2025-12-24 15:44:34 +09:00
commit 13d553220c
1047 changed files with 80931 additions and 0 deletions

14
test/runtime/index.ts Normal file
View File

@@ -0,0 +1,14 @@
import { TypeSystemPolicy } from '@sinclair/typebox/system'
// ------------------------------------------------------------------
// InstanceMode: Freeze (Detect Unintended Side Effects)
// ------------------------------------------------------------------
TypeSystemPolicy.InstanceMode = 'freeze'
import './compiler/index'
import './compiler-ajv/index'
import './errors/index'
import './syntax/index'
import './system/index'
import './type/index'
import './value/index'