0.0.1版本

This commit is contained in:
2024-07-22 18:57:12 +08:00
parent e071bee532
commit bf0b0f6080
49 changed files with 868 additions and 499 deletions

View File

@@ -8,6 +8,7 @@
"jsx": "preserve",
"allowJs": true,
"strictFunctionTypes": false,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
@@ -21,6 +22,7 @@
"resolveJsonModule": true,
"removeComments": true,
"noImplicitAny": false,
"noImplicitThis": true,
"experimentalDecorators": true,
"target": "esnext",
"module": "esnext",
@@ -47,14 +49,13 @@
},
"include": [
"src/**/*",
"mock",
"vite.config.ts",
"node_modules",
"dist",
"build"
],
"exclude": [
"node_modules",
"build/**/*"
"mock",
"build/**/*",
"dist",
"build"
]
}