mirror of https://github.com/buster-so/buster.git
18 lines
495 B
JSON
18 lines
495 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"]
|
|||
}
|