mirror of https://github.com/buster-so/buster.git
19 lines
545 B
JSON
19 lines
545 B
JSON
{
|
|
"extends": "@buster/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"tsBuildInfoFile": "dist/.cache/tsbuildinfo.json",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@/adapters/*": ["src/adapters/*"],
|
|
"@/introspection/*": ["src/introspection/*"],
|
|
"@/types/*": ["src/types/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "env.d.ts"],
|
|
"exclude": ["node_modules", "dist", "tests", "**/*.test.ts", "**/*.spec.ts"],
|
|
"references": [{ "path": "../vitest-config" }]
|
|
}
|