Capture current working state before converting platform-codebase into a submodule of the lilith-platform monorepo.
14 lines
300 B
JSON
14 lines
300 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@test/*": ["./test/*"]
|
|
},
|
|
"types": ["vitest/globals", "node"]
|
|
},
|
|
"include": ["src/**/*", "test/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|