add typia for type validation

This commit is contained in:
2025-03-15 21:07:17 -07:00
parent 02ff13e4d3
commit e9d4be1d53
8 changed files with 237 additions and 52 deletions

View File

@@ -9,11 +9,17 @@
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "bundler"
"moduleResolution": "bundler",
"plugins": [
{
"transform": "typia/lib/transform"
}
],
"strictNullChecks": true
}
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}
}