mtproto_exporter/tsconfig.json
2025-04-05 17:18:01 +03:00

22 lines
495 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "es2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowJs": true,
"strict": true,
"inlineSources": true,
"outDir": "./dist",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"./src"
],
"exclude": [
"**/node_modules"
]
}