This commit is contained in:
X1627315083
2025-10-09 09:29:36 +08:00
commit cc8c064d9c
107 changed files with 12520 additions and 0 deletions

20
activities/tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"forceConsistentCasingInFileNames": false, // ⚠️ 禁用大小写检查
"allowJs": true,
"baseUrl": ".",
"types": ["node"],
"paths": {
"@/*": ["./src/*"],
"_c/*": ["./src/components/*"]
}
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}