1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-11-28 12:43:35 +03:00
leon/skills/tsconfig.json
2023-11-15 02:00:57 +01:00

14 lines
340 B
JSON

{
"extends": ["@tsconfig/strictest/tsconfig", "@tsconfig/node16/tsconfig"],
"compilerOptions": {
"moduleResolution": "Node",
"module": "CommonJS",
"paths": {
"@@/*": ["../*"],
"@/*": ["../server/src/*"],
"@bridge/*": ["../bridges/nodejs/src/*"],
"@sdk/*": ["../bridges/nodejs/src/sdk/*"]
}
}
}