Files
dc-recorder/tsconfig.json

20 lines
447 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,
"types": ["node"],
2026-05-13 15:28:25 +07:00
"outDir": "dist",
"rootDir": "src",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react-jsx",
"resolveJsonModule": true
2026-05-13 15:28:25 +07:00
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}