tsconfig.jsonを読み込んでCompilerOptions を生成する方法
TypeScriptのCompiler APIを使うときCompilerOptionsが必要になることがある。これはtsconfig.json
のcompilerOptions
の内容である。これをTypeScript Compile APIを使うときの値にしたい。
しかし、tsconfig.json
を直接読み込んでもextendsされていたり、そもそもCompileOptionsにしたときに使う値を違うものがあるため、期待した内容をではない。
調べたところgetParsedCommandLineOfConfigFile
あたりを使うのが一番簡単にCompilerOptions
が取得できそうだった。
具体的には下記のような関数を用意して使った。
function readCompilerOptions(filename: string): ts.CompilerOptions {
const tsconfigValue = ts.getParsedCommandLineOfConfigFile(
filename,
{},
ts.sys as any,
);
return tsconfigValue?.options || {};
}
補足
参考にした場所
この方法はtscの処理を追ってCompileOptionsを取り出す仮定で、一番使いやすそうな場所を抜粋したものです。
export function parseConfigFileWithSystem(configFileName: string, optionsToExtend: CompilerOptions, watchOptionsToExtend: WatchOptions | undefined, system: System, reportDiagnostic: DiagnosticReporter) {
const host: ParseConfigFileHost = <any>system;
host.onUnRecoverableConfigFileDiagnostic = diagnostic => reportUnrecoverableDiagnostic(system, reportDiagnostic, diagnostic);
const result = getParsedCommandLineOfConfigFile(configFileName, optionsToExtend, host, /*extendedConfigCache*/ undefined, watchOptionsToExtend);
host.onUnRecoverableConfigFileDiagnostic = undefined!; // TODO: GH#18217
return result;
}
SystemをParseConfigFileHostとして使っている。あとは追加のオプションなので空でわたしています。
CompilerOptionsとtsconfigで違う値になる部分の例
たとえばjsx
であればenumになっているので数値になる。tsconfig.json
上では "react"
のように文字列指定をする。
interface CompilerOptions {
// (略)
jsx?: JsxEmit | ts.JsxEmit;
// (略)
}
const enum JsxEmit {
None = "None",
Preserve = "Preserve",
ReactNative = "ReactNative",
React = "React"
}
Author And Source
この問題について(tsconfig.jsonを読み込んでCompilerOptions を生成する方法), 我々は、より多くの情報をここで見つけました https://zenn.dev/eiel/articles/5cb7b43cb9ba0409042d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol