1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-09-17 13:07:08 +03:00
leon/tsconfig.json

24 lines
527 B
JSON
Raw Normal View History

2022-08-28 06:37:32 +03:00
{
"extends": "@tsconfig/node16-strictest/tsconfig.json",
2022-08-28 06:37:32 +03:00
"compilerOptions": {
"rootDir": ".",
2022-08-28 19:59:35 +03:00
"outDir": "./server/dist",
2022-08-28 06:37:32 +03:00
"baseUrl": ".",
"paths": {
"@@/*": ["./*"],
"@/*": ["./server/src/*"]
},
2022-08-28 09:12:59 +03:00
"allowJs": true,
"checkJs": false,
2022-09-03 04:51:35 +03:00
"resolveJsonModule": true
2022-08-28 06:37:32 +03:00
},
"ts-node": {
2022-09-03 04:51:35 +03:00
"swc": true,
2022-08-28 09:12:59 +03:00
"require": ["tsconfig-paths/register"],
"files": true
},
"files": ["server/src/global.d.ts"],
"include": ["server/src/**/*"],
2022-08-28 09:12:59 +03:00
"exclude": ["node_modules", "server/dist"]
2022-08-28 06:37:32 +03:00
}