2023-04-25 02:53:36 +03:00
|
|
|
{
|
2023-10-18 18:30:08 +03:00
|
|
|
"extends": "../../../tsconfig.json",
|
2023-04-25 02:53:36 +03:00
|
|
|
"compilerOptions": {
|
2023-05-31 15:49:56 +03:00
|
|
|
"composite": true,
|
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"],
|
2023-09-17 23:26:06 +03:00
|
|
|
"outDir": "lib",
|
2023-05-11 05:42:56 +03:00
|
|
|
"moduleResolution": "node",
|
2023-05-29 07:53:15 +03:00
|
|
|
"resolveJsonModule": true,
|
2023-06-08 07:41:47 +03:00
|
|
|
"noImplicitOverride": true
|
2023-04-25 02:53:36 +03:00
|
|
|
},
|
2023-06-13 05:01:43 +03:00
|
|
|
"include": ["./src"],
|
2023-09-17 23:26:06 +03:00
|
|
|
"exclude": ["node_modules", "lib", "dist", "**/__tests__/**/*"],
|
2023-04-25 02:53:36 +03:00
|
|
|
"references": [
|
|
|
|
{
|
2023-10-18 18:30:08 +03:00
|
|
|
"path": "../../frontend/native"
|
2023-05-31 15:49:56 +03:00
|
|
|
},
|
|
|
|
{
|
2023-10-18 18:30:08 +03:00
|
|
|
"path": "../../common/infra"
|
2023-05-31 15:49:56 +03:00
|
|
|
},
|
2023-07-10 11:03:18 +03:00
|
|
|
{
|
2023-10-18 18:30:08 +03:00
|
|
|
"path": "../../common/env"
|
2023-07-10 11:03:18 +03:00
|
|
|
},
|
2023-06-09 11:43:46 +03:00
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
},
|
2023-10-19 06:14:30 +03:00
|
|
|
{
|
|
|
|
"path": "../../../tests/kit"
|
|
|
|
}
|
2023-04-25 02:53:36 +03:00
|
|
|
],
|
|
|
|
"ts-node": {
|
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
|
|
|
}
|
|
|
|
}
|