tsconfig.json

The tsconfig.json file, contains the instructions on how to compile a Typescript project into Javascript and the file paths to compile. 
The presence of the tsconfig.json file indicates a Typescript project, and should be found in the root folder of your typescript project.

 

TSLint

TSLint is an extensible static analysis tool that checks TypeScript code for readability, maintainability, and functionality errors. It is widely supported across modern editors & build systems and can be customized with your own lint rules, configurations, and formatters.

The tslint.json file in the root of the project, contains the set of rules, to which your IDE and typescript compiler will comply to when showing syntax errors for example, or when compiling your project and show syntax warnings.

The tslint is dependent on typescript tsc.
 

The tsconfig.json file

Tomas Katz
Module by Tomas Katz, updated more than 1 year ago

Description

Review the tsconfig.json role