diff --git a/tsconfig.json b/tsconfig.json index 00e0306..d434592 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,10 +11,11 @@ // So here we enable some resolution features that are only available in bundlers. "moduleResolution": "bundler", "resolveJsonModule": true, - "allowImportingTsExtensions": true, - // `allowImportingTsExtensions` can only be used when `noEmit` or `emitDeclarationOnly` is set. - "noEmit": true, + // But `noEmit` may cause problems with solution-style tsconfigs: + // + // And `emitDeclarationOnly` is not always wanted. + // Considering it's not likely to be commonly used in Vue codebases, we don't enable it here. // Required in Vue projects "jsx": "preserve",