text-processing-utils/tsconfig.json
2026-01-21 11:37:27 -08:00

21 lines
352 B
JSON

{
"extends": "@lilith/configs/typescript/base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": "./src",
"paths": {
"~/*": ["./*"],
"~/data/*": ["./data/*"]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts",
"**/tests"
]
}