mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-19 14:52:21 +03:00
24 lines
477 B
JSON
24 lines
477 B
JSON
{
|
|
"extends": "@tsconfig/node16-strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist/bin",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"ignoreDeprecations": "5.0",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"resolveJsonModule": true
|
|
},
|
|
"ts-node": {
|
|
"swc": true,
|
|
"require": ["tsconfig-paths/register"],
|
|
"files": true
|
|
},
|
|
"files": [],
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist"]
|
|
}
|