Files
ci_cd_kniaz/tsconfig.json
21_KnjazkinSO f7a4ce0667
Some checks failed
CI / build (push) Failing after 27s
replace tsconfig
2026-05-10 17:01:37 +03:00

16 lines
335 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"types": ["jest", "node"],
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist"]
}