Enables modification of any part of the project's tsconfig.json file.
tsconfig.json
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.modify(tsconfig => { tsconfig.compilerOptions ||= {}; tsconfig.compilerOptions.isolatedModules = true;}); Copy
import { tsconfig } from 'ember-apply';await tsconfig.modify(tsconfig => { tsconfig.compilerOptions ||= {}; tsconfig.compilerOptions.isolatedModules = true;});
Enables modification of any part of the project's
tsconfig.json
file.