mirror of
https://github.com/denoland/deno.git
synced 2024-12-24 08:09:08 -05:00
fix: error on invalid & unsupported jsx compiler options (#19954)
This commit is contained in:
parent
806137bb96
commit
02d6bbff2c
5 changed files with 88 additions and 18 deletions
|
@ -1033,20 +1033,37 @@ impl ConfigFile {
|
|||
/// JSX import source configuration.
|
||||
pub fn to_maybe_jsx_import_source_config(
|
||||
&self,
|
||||
) -> Option<JsxImportSourceConfig> {
|
||||
let compiler_options_value = self.json.compiler_options.as_ref()?;
|
||||
let compiler_options: CompilerOptions =
|
||||
serde_json::from_value(compiler_options_value.clone()).ok()?;
|
||||
let module = match compiler_options.jsx.as_deref() {
|
||||
Some("react-jsx") => Some("jsx-runtime".to_string()),
|
||||
Some("react-jsxdev") => Some("jsx-dev-runtime".to_string()),
|
||||
_ => None,
|
||||
) -> Result<Option<JsxImportSourceConfig>, AnyError> {
|
||||
let Some(compiler_options_value) = self.json.compiler_options.as_ref() else {
|
||||
return Ok(None);
|
||||
};
|
||||
module.map(|module| JsxImportSourceConfig {
|
||||
let Some(compiler_options) =
|
||||
serde_json::from_value::<CompilerOptions>(compiler_options_value.clone()).ok() else {
|
||||
return Ok(None);
|
||||
};
|
||||
let module = match compiler_options.jsx.as_deref() {
|
||||
Some("react-jsx") => "jsx-runtime".to_string(),
|
||||
Some("react-jsxdev") => "jsx-dev-runtime".to_string(),
|
||||
Some("react") | None => {
|
||||
if compiler_options.jsx_import_source.is_some() {
|
||||
bail!(
|
||||
"'jsxImportSource' is only supported when 'jsx' is set to 'react-jsx' or 'react-jsxdev'.\n at {}",
|
||||
self.specifier,
|
||||
);
|
||||
}
|
||||
return Ok(None);
|
||||
}
|
||||
Some(setting) => bail!(
|
||||
"Unsupported 'jsx' compiler option value '{}'. Supported: 'react-jsx', 'react-jsxdev', 'react'\n at {}",
|
||||
setting,
|
||||
self.specifier,
|
||||
),
|
||||
};
|
||||
Ok(Some(JsxImportSourceConfig {
|
||||
default_specifier: compiler_options.jsx_import_source,
|
||||
module,
|
||||
base_url: self.specifier.clone(),
|
||||
})
|
||||
}))
|
||||
}
|
||||
|
||||
pub fn resolve_tasks_config(
|
||||
|
@ -1609,6 +1626,59 @@ mod tests {
|
|||
assert!(ConfigFile::new(config_text, config_specifier).is_err());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_jsx_invalid_setting() {
|
||||
let config_text = r#"{ "compilerOptions": { "jsx": "preserve" } }"#;
|
||||
let config_specifier =
|
||||
ModuleSpecifier::parse("file:///deno/tsconfig.json").unwrap();
|
||||
let config = ConfigFile::new(config_text, config_specifier).unwrap();
|
||||
assert_eq!(
|
||||
config.to_maybe_jsx_import_source_config().err().unwrap().to_string(),
|
||||
concat!(
|
||||
"Unsupported 'jsx' compiler option value 'preserve'. Supported: 'react-jsx', 'react-jsxdev', 'react'\n",
|
||||
" at file:///deno/tsconfig.json",
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_jsx_import_source_only() {
|
||||
let config_specifier =
|
||||
ModuleSpecifier::parse("file:///deno/tsconfig.json").unwrap();
|
||||
{
|
||||
let config_text =
|
||||
r#"{ "compilerOptions": { "jsxImportSource": "test" } }"#;
|
||||
let config =
|
||||
ConfigFile::new(config_text, config_specifier.clone()).unwrap();
|
||||
assert_eq!(
|
||||
config.to_maybe_jsx_import_source_config().err().unwrap().to_string(),
|
||||
concat!(
|
||||
"'jsxImportSource' is only supported when 'jsx' is set to 'react-jsx' or 'react-jsxdev'.\n",
|
||||
" at file:///deno/tsconfig.json",
|
||||
),
|
||||
);
|
||||
}
|
||||
{
|
||||
let config_text = r#"{ "compilerOptions": { "jsx": "react", "jsxImportSource": "test" } }"#;
|
||||
let config = ConfigFile::new(config_text, config_specifier).unwrap();
|
||||
assert_eq!(
|
||||
config.to_maybe_jsx_import_source_config().err().unwrap().to_string(),
|
||||
concat!(
|
||||
"'jsxImportSource' is only supported when 'jsx' is set to 'react-jsx' or 'react-jsxdev'.\n",
|
||||
" at file:///deno/tsconfig.json",
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_jsx_import_source_valid() {
|
||||
let config_text = r#"{ "compilerOptions": { "jsx": "react" } }"#;
|
||||
let config_specifier =
|
||||
ModuleSpecifier::parse("file:///deno/tsconfig.json").unwrap();
|
||||
assert!(ConfigFile::new(config_text, config_specifier).is_ok());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_tsconfig_as_bytes() {
|
||||
let mut tsconfig1 = TsConfig::new(json!({
|
||||
|
|
|
@ -914,11 +914,11 @@ impl CliOptions {
|
|||
/// Return the JSX import source configuration.
|
||||
pub fn to_maybe_jsx_import_source_config(
|
||||
&self,
|
||||
) -> Option<JsxImportSourceConfig> {
|
||||
self
|
||||
.maybe_config_file
|
||||
.as_ref()
|
||||
.and_then(|c| c.to_maybe_jsx_import_source_config())
|
||||
) -> Result<Option<JsxImportSourceConfig>, AnyError> {
|
||||
match self.maybe_config_file.as_ref() {
|
||||
Some(config) => config.to_maybe_jsx_import_source_config(),
|
||||
None => Ok(None),
|
||||
}
|
||||
}
|
||||
|
||||
/// Return any imports that should be brought into the scope of the module
|
||||
|
|
|
@ -398,7 +398,7 @@ impl CliFactory {
|
|||
.resolver
|
||||
.get_or_try_init_async(async {
|
||||
Ok(Arc::new(CliGraphResolver::new(
|
||||
self.options.to_maybe_jsx_import_source_config(),
|
||||
self.options.to_maybe_jsx_import_source_config()?,
|
||||
self.maybe_import_map().await?.clone(),
|
||||
self.options.no_npm(),
|
||||
self.npm_api()?.clone(),
|
||||
|
|
|
@ -1219,7 +1219,7 @@ impl Documents {
|
|||
});
|
||||
let maybe_jsx_config = options
|
||||
.maybe_config_file
|
||||
.and_then(|cf| cf.to_maybe_jsx_import_source_config());
|
||||
.and_then(|cf| cf.to_maybe_jsx_import_source_config().ok().flatten());
|
||||
let new_resolver_config_hash = calculate_resolver_config_hash(
|
||||
&options.enabled_urls,
|
||||
options.document_preload_limit,
|
||||
|
|
2
cli/tools/vendor/mod.rs
vendored
2
cli/tools/vendor/mod.rs
vendored
|
@ -50,7 +50,7 @@ pub async fn vendor(
|
|||
let cli_options = factory.cli_options();
|
||||
let entry_points =
|
||||
resolve_entry_points(&vendor_flags, cli_options.initial_cwd())?;
|
||||
let jsx_import_source = cli_options.to_maybe_jsx_import_source_config();
|
||||
let jsx_import_source = cli_options.to_maybe_jsx_import_source_config()?;
|
||||
let module_graph_builder = factory.module_graph_builder().await?.clone();
|
||||
let output = build::build(build::BuildInput {
|
||||
entry_points,
|
||||
|
|
Loading…
Reference in a new issue