qwen-free-api/tsconfig.json

16 lines
389 B
JSON
Raw Permalink Normal View History

2024-03-24 01:48:06 +08:00
{
"compilerOptions": {
"baseUrl": ".",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"paths": {
"@/*": ["src/*"]
},
"outDir": "./dist"
},
"include": ["src/**/*", "libs.d.ts"],
"exclude": ["node_modules", "dist"]
}