refactor: move typescript stuff to 'schemas' directory

This commit is contained in:
yusing
2025-03-28 09:28:02 +08:00
parent f966ca8b83
commit a9e4f82e30
5 changed files with 10 additions and 6 deletions

16
schemas/tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"incremental": true,
"skipLibCheck": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"resolveJsonModule": true,
"declaration": true
},
"include": ["."]
}