TelegramRSS/tsconfig.json

18 lines
414 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "./lib",
"strict": false,
"esModuleInterop": true,
"preserveWatchOutput": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["./src"],
"exclude": ["node_modules"]
}