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

24 lines
544 B
JSON
Raw Normal View History

2023-02-13 12:41:30 +00:00
{
2024-06-05 08:52:41 +02:00
"extends": "@link-stack/typescript-config",
2023-02-13 12:41:30 +00:00
"compilerOptions": {
2023-03-13 16:21:43 +00:00
"outDir": "build/main",
2024-05-14 15:31:44 +02:00
"module": "esnext",
"target": "esnext",
2023-05-25 09:27:26 +00:00
"esModuleInterop": true,
2024-05-14 15:31:44 +02:00
"skipLibCheck": true,
"moduleResolution": "node"
2023-02-13 12:41:30 +00:00
},
2024-04-21 16:59:50 +02:00
"ts-node": {
2024-04-21 20:47:55 +02:00
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true,
"compilerOptions": {
2024-05-14 15:31:44 +02:00
"module": "esNext",
"target": "esNext",
2024-04-21 20:47:55 +02:00
"moduleResolution": "node"
}
2024-04-21 16:59:50 +02:00
},
2023-02-13 12:41:30 +00:00
"include": ["**/*.ts", "**/.*.ts"],
2023-03-14 17:40:24 +00:00
"exclude": ["node_modules", "build"]
2023-02-13 12:41:30 +00:00
}