agent-smith/tsconfig.json
2026-02-26 19:41:09 +01:00

27 lines
629 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist-in",
"rootDir": "./src",
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": true,
"experimentalDecorators": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}