mirror of https://github.com/buster-so/buster.git
14 lines
453 B
JSON
14 lines
453 B
JSON
{
|
|
"extends": "@buster/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "dist/.cache/tsbuildinfo.json",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler"
|
|
},
|
|
"include": ["src/**/*", "env.d.ts"],
|
|
"exclude": ["node_modules", "dist", "tests", "**/*.test.tsx", "**/*.test.ts", "**/*.spec.ts"],
|
|
"references": [{ "path": "../database" }, { "path": "../vitest-config" }]
|
|
}
|