blackajiro_Resonance/tsconfig.tests.json
Michael Gorini d3f4bf8eeb refactor
2026-04-27 14:51:02 +02:00

22 lines
533 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "Node",
"lib": ["ES2020", "DOM"],
"strict": true,
"esModuleInterop": true,
"types": ["node"],
"outDir": ".test-dist",
"rootDir": ".",
"skipLibCheck": true
},
"include": [
"src/domain/**/*.ts",
"src/application/OrderedSegmentQueue.ts",
"src/application/dashboard.ts",
"src/infrastructure/system/autoDetect.ts",
"src/infrastructure/system/deviceScanner.ts",
"tests/**/*.ts"
]
}