console/integration-tests/tsconfig.json

17 lines
501 B
JSON
Raw Normal View History

{
"extends": "../tsconfig.json",
"compilerOptions": {
"rootDir": "..",
"baseUrl": ".",
"esModuleInterop": true,
"paths": {
"@hive/server": ["../packages/services/server/src/api.ts"],
"@hive/storage": ["../packages/services/storage/src/index.ts"],
"@hive/rate-limit": ["../packages/services/rate-limit/src/api.ts"],
"@app/gql/graphql": ["./testkit/gql/graphql.ts"],
"@app/gql": ["./testkit/gql/index.ts"]
}
},
"include": ["testkit", "tests"]
}