[playground] Partially revert #32009 (#32035)
I had forgotten that our default error reporting threshold was `none` due to the fact that build pipelines should not throw errors. This resets it back to throwing on all errors which mostly is the same as the eslint plugin. Closes #32014.
lauren committed
Jan 9, 2025 at 12:21 UTC
8932ca32f47a1441723ae30ef6828998e9587553
1 file changed
+1
compiler/apps/playground/components/Editor/EditorImpl.tsx
+1
@@ -78,6 +78,7 @@ function invokeCompiler(
78
logEvent: () => {},
79
},
80
environment,
81
+ panicThreshold: 'all_errors',
82
});
83
const ast = parseInput(source, language);
84
let result = transformFromAstSync(ast, source, {