Files
dc-recorder/tsconfig.json

15 lines
298 B
JSON
Raw Normal View History

2026-05-12 19:38:23 +07:00
{
2026-05-13 15:28:25 +07:00
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}