mirror of
https://github.com/zhigang1992/telegram-mcp.git
synced 2026-01-12 16:43:17 +08:00
25 lines
563 B
JSON
25 lines
563 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": false,
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"./src"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
]
|
|
}
|