OptionalcompileEnable Compile-on-Save for this project.
OptionalcompilerInstructs the TypeScript compiler how to compile .ts files.
OptionalexcludeSpecifies a list of files to be excluded from compilation. The exclude property only affects the files included via the include property and not the files property.
Glob patterns require TypeScript version 2.0 or later.
OptionalextendsPath to base configuration file to inherit from.
OptionalfilesIf no files or include property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by exclude. When a files property is specified, only those files and those specified by include are included.
OptionalincludeSpecifies a list of glob patterns that match files to be included in compilation.
If no files or include property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by exclude.
OptionalreferencesReferenced projects.
OptionaltypeAuto type (.d.ts) acquisition options for this project.
OptionalwatchInstructs the TypeScript compiler how to watch files.
Type for TypeScript's
tsconfig.jsonfile (TypeScript 3.7).