edtech / apps /whatsapp-worker /tsconfig.json
CognxSafeTrack
chore: setup whatsapp-worker for pure JS compilation and add Dockerfile fallback for Railway
8f17184
raw
history blame contribute delete
463 Bytes
{
"extends": "@repo/tsconfig/base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"module": "CommonJS",
"moduleResolution": "node",
"noEmit": false,
"allowImportingTsExtensions": false,
"target": "ES2020",
"lib": [
"ES2020"
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*"
]
}