2023-02-13 12:41:30 +00:00
|
|
|
{
|
2024-04-21 16:59:50 +02:00
|
|
|
"extends": "ts-config",
|
2023-02-13 12:41:30 +00:00
|
|
|
"compilerOptions": {
|
2023-03-13 16:21:43 +00:00
|
|
|
"outDir": "build/main",
|
2024-04-21 16:59:50 +02:00
|
|
|
"module": "CommonJS",
|
2023-05-25 09:27:26 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true
|
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": {
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"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
|
|
|
}
|