2023-04-18 06:24:44 +03:00
|
|
|
{
|
2023-10-18 18:30:08 +03:00
|
|
|
"extends": "../../../tsconfig.json",
|
2023-04-18 06:24:44 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
2024-03-19 05:16:23 +03:00
|
|
|
"target": "ES2022",
|
2023-04-18 06:24:44 +03:00
|
|
|
"module": "ESNext",
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2023-06-21 09:08:32 +03:00
|
|
|
"moduleResolution": "Bundler",
|
2023-08-29 13:07:05 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-04-18 06:24:44 +03:00
|
|
|
"isolatedModules": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"types": ["node"],
|
|
|
|
"outDir": "dist",
|
2023-06-21 09:08:32 +03:00
|
|
|
"noEmit": false,
|
2023-06-27 12:23:19 +03:00
|
|
|
"verbatimModuleSyntax": false,
|
|
|
|
"rootDir": "./src"
|
2023-04-18 06:24:44 +03:00
|
|
|
},
|
2023-09-17 00:40:33 +03:00
|
|
|
"include": ["./src"],
|
2023-09-15 10:34:14 +03:00
|
|
|
"exclude": ["dist", "lib", "tests"],
|
2023-04-19 02:14:25 +03:00
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
2023-06-29 04:45:45 +03:00
|
|
|
},
|
|
|
|
{
|
2024-04-29 05:14:20 +03:00
|
|
|
"path": "../native/tsconfig.json"
|
2023-04-19 02:14:25 +03:00
|
|
|
}
|
|
|
|
],
|
2023-04-18 06:24:44 +03:00
|
|
|
"ts-node": {
|
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
|
|
|
}
|
|
|
|
}
|