31 lines
502 B
JSON
31 lines
502 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../dist",
|
|
"rootDir": "../../",
|
|
"paths": {
|
|
"#config/*": [
|
|
"config/*"
|
|
],
|
|
"#adapters/*": [
|
|
"adapters/*"
|
|
],
|
|
"#domain/*": [
|
|
"domain/*"
|
|
],
|
|
"#ports/*": [
|
|
"ports/*"
|
|
],
|
|
"#tests/*": [
|
|
"__tests__/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"**/*.ts",
|
|
"../../packages/sim-shared/**/*.ts"
|
|
]
|
|
} |