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