2023-08-11 17:23:56 +02:00
|
|
|
{
|
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
|
"include": [
|
|
|
|
|
"./*"
|
|
|
|
|
],
|
2023-08-15 22:20:24 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"moduleResolution": "node"
|
|
|
|
|
},
|
2023-08-11 17:23:56 +02:00
|
|
|
"ts-node": {
|
|
|
|
|
// these options are overrides used only by ts-node
|
|
|
|
|
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|