Files
litlyx/broker/tsconfig.json
Emily 0563a833eb .
2024-08-29 16:34:26 +02:00

36 lines
770 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "NodeNext",
"target": "ESNext",
"esModuleInterop": true,
"outDir": "dist",
"types": [
"node",
"jest"
],
"paths": {
"@schema/*": [
"../shared/schema/*"
],
"@services/*": [
"../shared/services/*"
],
"@data/*": [
"../shared/data/*"
],
"@functions/*": [
"../shared/functions/*"
]
}
},
"include": [
"src/**/*.ts",
"scripts/**/*.ts",
"tests/**/*.test.ts",
"tests/utils.ts"
],
"exclude": [
"node_modules"
]
}