Chat-With-AI / tsconfig.json
NathMen12's picture
Update tsconfig.json
9bda6fd verified
Raw
History Blame Contribute Delete
727 Bytes
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@core/*": ["src/core/*"],
"@modules/*": ["src/modules/*"],
"@config/*": ["src/config/*"],
"@workers/*": ["src/workers/*"]
},
"types": ["node"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "workers"]
}