feat: build framework

This commit is contained in:
2024-03-19 22:51:10 +08:00
parent fbe51e7668
commit afb892c5e9
19 changed files with 2784 additions and 15 deletions

View File

@@ -1,5 +1,9 @@
{
"compilerOptions": {
"typeRoots": [
"node_modules/@types",
"src/types"
],
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
@@ -13,6 +17,11 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"baseUrl": "./",
"paths": {
"@": ["src"],
"@/*": ["src/*"]
},
/* Linting */
"strict": true,