2023-04-25 02:53:36 +03:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2023-05-11 05:42:56 +03:00
|
|
|
"skipLibCheck": true,
|
2023-04-25 02:53:36 +03:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"types": ["node"],
|
|
|
|
"outDir": "dist",
|
2023-05-11 05:42:56 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true
|
2023-04-25 02:53:36 +03:00
|
|
|
},
|
2023-05-11 05:42:56 +03:00
|
|
|
"include": ["**/*.ts", "**/*.tsx", "package.json"],
|
2023-04-25 02:53:36 +03:00
|
|
|
"exclude": ["out", "dist", "node_modules"],
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"ts-node": {
|
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
|
|
|
}
|
|
|
|
}
|