seedling/source/api/.tsconfig.json
Roman Jaroš 5246efb027 Add API monorepo
Change-Id: I39aa1707744bb86c4bc9113157bbf815bb3fe33a
2023-09-10 22:25:09 +02:00

42 lines
No EOL
940 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"strict": false,
"outDir": "dist",
"rootDir": "./",
"baseUrl": "./",
"resolveJsonModule": true,
"paths": {
"config/*": [
"./src/config/*"
],
"database/*": [
"./src/database/*"
],
"model/*": [
"./src/model/*"
],
"controllers/*": [
"./src/controllers/*"
],
"utils/*": [
"./src/utils/*"
],
"types/*": [
"./src/types/*"
],
"plugins/*": [
"./src/plugins/*"
]
}
},
"include": [
"./**/*.ts",
"./**/*.tsx",
"./src/**/*.json"
],
"exclude": [
"node_modules"
]
}