test-reporter/tsconfig.json
Jozef Izso bec9662ac9 Upgrade typescript config to target NodeJS 20
Fixes the error:

```
src/parsers/dart-json/dart-json-parser.ts:209:123 - error TS1501: This regular expression flag is only available when targeting 'es2018' or later.

209         /^══╡ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK ╞═+\s+(.*)\s+When the exception was thrown, this was the stack:/ms
```
2024-06-25 15:52:26 +02:00

16 lines
307 B
JSON

{
"compilerOptions": {
"lib": ["es2023"],
"module": "node16",
"target": "es2022",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node16",
"outDir": "./lib",
"rootDir": "./src",
},
"exclude": ["node_modules", "**/*.test.ts"]
}