41 lines
697 B
JSON
41 lines
697 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../dist",
|
|
"rootDir": "../../",
|
|
"paths": {
|
|
"#config/*": [
|
|
"./config/*"
|
|
],
|
|
"#infrastructure/*": [
|
|
"./infrastructure/*"
|
|
],
|
|
"#domain/*": [
|
|
"./domain/*"
|
|
],
|
|
"#aplication/*": [
|
|
"./aplication/*"
|
|
],
|
|
"config/*": [
|
|
"./config/*"
|
|
],
|
|
"infrastructure/*": [
|
|
"./infrastructure/*"
|
|
],
|
|
"domain/*": [
|
|
"./domain/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.d.ts",
|
|
"../../packages/sim-shared/**/*.ts"
|
|
],
|
|
"files": [
|
|
"index.ts"
|
|
]
|
|
} |