feat: create typescript version of character schema

This commit is contained in:
Lukas Obermann
2023-06-07 17:02:16 +02:00
parent 2879176efd
commit 9e86e2fc72
2 changed files with 1699 additions and 0 deletions
+1683
View File
File diff suppressed because it is too large Load Diff
+16
View File
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"declaration": true,
"lib": ["ESNext"],
"module": "NodeNext",
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"outDir": "lib",
"rootDir": "src",
"strict": true,
"target": "ESNext",
},
"include": [
"src/**/*"
]
}