Files
sf-sim/packages/shared/tsconfig.json

34 lines
523 B
JSON
Raw Normal View History

2026-01-30 14:24:42 +01:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
2026-01-30 14:53:18 +01:00
"outDir": "../../dist",
2026-01-30 14:24:42 +01:00
"baseUrl": ".",
"paths": {
"#config/*": [
"config/*"
],
"#adapters/*": [
"adapters/*"
],
"#domain/*": [
"domain/*"
],
"#ports/*": [
"ports/*"
],
"#tests/*": [
"__tests__/*"
],
"#shared/*": [
2026-01-30 14:53:18 +01:00
"./*"
2026-01-30 14:24:42 +01:00
],
}
},
"exclude": [
"node_modules"
],
"include": [
"**/*.ts",
"src/**/*.d.ts"
],
}