feat: welcome to sigitex.com

This commit is contained in:
Dan Finch 2026-05-11 04:50:54 +02:00
commit 46f341745c
27 changed files with 1341 additions and 0 deletions

21
tsconfig.base.json Normal file
View file

@ -0,0 +1,21 @@
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": [
"esnext"
],
"types": [],
"moduleResolution": "bundler",
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strict": true,
"outDir": "dist",
"paths": {
"@/*": [
"./src/*"
]
}
}
}