link-stack/apps/bridge-whatsapp/tsconfig.json

19 lines
487 B
JSON
Raw Normal View History

2024-05-07 14:16:01 +02:00
{
2024-06-05 15:12:48 +02:00
"extends": "@link-stack/typescript-config/tsconfig.node.json",
2024-05-07 14:16:01 +02:00
"compilerOptions": {
2025-12-02 16:55:07 +01:00
"module": "NodeNext",
"target": "es2022",
2024-05-15 14:39:33 +02:00
"esModuleInterop": true,
2025-12-02 16:55:07 +01:00
"moduleResolution": "NodeNext",
2024-05-07 14:16:01 +02:00
"outDir": "build/main",
"rootDir": "src",
"skipLibCheck": true,
"types": ["node"],
2025-12-02 16:55:07 +01:00
"lib": ["es2022", "DOM"],
"composite": true,
"rewriteRelativeImportExtensions": true
2024-05-07 14:16:01 +02:00
},
"include": ["src/**/*.ts", "src/**/.*.ts"],
"exclude": ["node_modules/**"]
}