2023-04-25 02:53:36 +03:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"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"],
|
|
|
|
"outDir": "dist",
|
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-05-31 15:49:56 +03:00
|
|
|
"exclude": ["node_modules", "out", "dist"],
|
2023-04-25 02:53:36 +03:00
|
|
|
"references": [
|
|
|
|
{
|
2023-06-09 11:43:46 +03:00
|
|
|
"path": "../../packages/plugin-infra"
|
2023-05-31 15:49:56 +03:00
|
|
|
},
|
|
|
|
{
|
2023-06-08 07:41:47 +03:00
|
|
|
"path": "../../packages/native"
|
2023-05-31 15:49:56 +03:00
|
|
|
},
|
2023-06-08 04:41:20 +03:00
|
|
|
{
|
|
|
|
"path": "../../packages/infra"
|
|
|
|
},
|
2023-06-09 11:43:46 +03:00
|
|
|
|
|
|
|
// Tests
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./tests/tsconfig.json"
|
|
|
|
},
|
2023-05-31 15:49:56 +03:00
|
|
|
{ "path": "../../tests/kit" }
|
2023-04-25 02:53:36 +03:00
|
|
|
],
|
|
|
|
"ts-node": {
|
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
|
|
|
}
|
|
|
|
}
|