Files
mono/tsconfig.json
T
2025-07-10 16:45:07 +05:00

38 lines
962 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020"],
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"declaration": true,
"incremental": true,
"composite": true,
"tsBuildInfoFile": "./node_modules/.cache/tsconfig.tsbuildinfo"
},
"references": [
{ "path": "./components/cooptypes" },
{ "path": "./components/sdk" },
{ "path": "./components/controller" },
{ "path": "./components/factory" },
{ "path": "./components/parser" },
{ "path": "./components/notificator" },
{ "path": "./components/notificator2" },
{ "path": "./components/boot" },
{ "path": "./components/migrator" }
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts",
"**/*.spec.ts",
"**/node_modules",
"**/dist"
]
}