feat: build system

This commit is contained in:
2025-08-13 12:21:20 -06:00
parent 64af8e6d95
commit 2c59ce43ad
8 changed files with 290 additions and 47 deletions

View File

@@ -24,7 +24,12 @@
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
"noPropertyAccessFromIndexSignature": false,
//Paths
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}