1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-18 14:21:32 +03:00
leon/bridges/nodejs/tsconfig.json

11 lines
204 B
JSON
Raw Normal View History

2023-04-30 16:36:07 +03:00
{
2023-05-02 18:53:41 +03:00
"extends": "../../tsconfig.json",
2023-04-30 16:36:07 +03:00
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist/bin",
2023-05-02 18:53:41 +03:00
"baseUrl": "."
2023-04-30 16:36:07 +03:00
},
"include": ["src/**/*"],
2023-05-02 18:53:41 +03:00
"exclude": ["node_modules", "dist"]
2023-04-30 16:36:07 +03:00
}