mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 01:40:15 +08:00
27 lines
408 B
JSON
27 lines
408 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"composite": false,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"tests/**/*",
|
|
"scripts/**/*",
|
|
"env.d.ts",
|
|
"*.ts",
|
|
"*.tsx",
|
|
"*.mts",
|
|
"*.cts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
"dashboard/dist",
|
|
"dashboard/node_modules"
|
|
]
|
|
}
|