Modifies the compilerOptions in a tsconfig.json file.
an object of compilerOptions to merge in with the existing compilerOptions
Optional
the directory of a tsconfig.json or the direct filePath to a specific tsconfig.json. The default value is the current working directory.
import { tsconfig } from 'ember-apply';await tsconfig.addCompilerOptions({ isolatedDeclarations: true, isolatedModules: true,}); Copy
import { tsconfig } from 'ember-apply';await tsconfig.addCompilerOptions({ isolatedDeclarations: true, isolatedModules: true,});
Modifies the compilerOptions in a tsconfig.json file.