15 lines
399 B
JSON
15 lines
399 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.options.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"src/*": ["./src/*"],
|
|
"test/*": ["./test/*"],
|
|
"~/*": ["./*"],
|
|
"effect-errors/*": ["./src/effect-errors/*"]
|
|
},
|
|
"types": ["@types/bun", "vitest/importMeta"]
|
|
},
|
|
"include": ["src/**/*", "test/**/*", "scripts/**/*", "package.json"]
|
|
}
|