@@ -116,20 +116,20 @@ function generateAST(code, options, additionalParsingContext) {
116
116
}
117
117
}
118
118
119
- if ( ! isRunningSupportedTypeScriptVersion && ! warnedAboutTSVersion ) {
120
- const border = "=============" ;
121
- const versionWarning = [
122
- border ,
123
- "WARNING: You are currently running a version of TypeScript which is not officially supported by typescript-eslint-parser." ,
124
- "You may find that it works just fine, or you may not." ,
125
- `SUPPORTED TYPESCRIPT VERSIONS: ${ SUPPORTED_TYPESCRIPT_VERSIONS } ` ,
126
- `YOUR TYPESCRIPT VERSION: ${ ACTIVE_TYPESCRIPT_VERSION } ` ,
127
- "Please only submit bug reports when using the officially supported version." ,
128
- border
129
- ] ;
130
- extra . log ( versionWarning . join ( "\n\n" ) ) ;
131
- warnedAboutTSVersion = true ;
132
- }
119
+ // if (!isRunningSupportedTypeScriptVersion && !warnedAboutTSVersion) {
120
+ // const border = "=============";
121
+ // const versionWarning = [
122
+ // border,
123
+ // "WARNING: You are currently running a version of TypeScript which is not officially supported by typescript-eslint-parser.",
124
+ // "You may find that it works just fine, or you may not.",
125
+ // `SUPPORTED TYPESCRIPT VERSIONS: ${SUPPORTED_TYPESCRIPT_VERSIONS}`,
126
+ // `YOUR TYPESCRIPT VERSION: ${ACTIVE_TYPESCRIPT_VERSION}`,
127
+ // "Please only submit bug reports when using the officially supported version.",
128
+ // border
129
+ // ];
130
+ // extra.log(versionWarning.join("\n\n"));
131
+ // warnedAboutTSVersion = true;
132
+ // }
133
133
134
134
// Even if jsx option is set in typescript compiler, filename still has to
135
135
// contain .tsx file extension
0 commit comments