TelegramRSS/tsconfig.json

18 lines
414 B
JSON
Raw Permalink Normal View History

2019-05-15 01:01:18 +00:00
{
2023-04-12 20:18:27 +00:00
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "./lib",
"strict": false,
"esModuleInterop": true,
"preserveWatchOutput": true,
2023-04-12 20:22:29 +00:00
"forceConsistentCasingInFileNames": true,
2023-04-25 22:04:56 +00:00
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
2023-04-12 20:18:27 +00:00
},
"include": ["./src"],
"exclude": ["node_modules"]
}