mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 13:57:09 +01:00
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 ```
16 lines
307 B
JSON
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"]
|
|
}
|