Update tsconfig (#3496)

pull/3445/head
Appasaheb Nage 2 years ago committed by GitHub
parent e29289f0dc
commit 831521ae10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/data/roadmaps/typescript/content/100-typescript/102-install-configure/100-tsconfig-json.md

@ -7,6 +7,7 @@ tsconfig.json is a configuration file in TypeScript that specifies the compiler
- `strict`: enables/disables strict type checking. - `strict`: enables/disables strict type checking.
- `outDir`: the directory to output the compiled JavaScript files. - `outDir`: the directory to output the compiled JavaScript files.
- `rootDir`: the root directory of the TypeScript files. - `rootDir`: the root directory of the TypeScript files.
- `include`: an array of file/directory patterns to include in the compilation.
- `exclude`: an array of file/directory patterns to exclude from the compilation. - `exclude`: an array of file/directory patterns to exclude from the compilation.
Given below is the sample `tsconfig.json` file: Given below is the sample `tsconfig.json` file:
@ -20,7 +21,8 @@ Given below is the sample `tsconfig.json` file:
"outDir": "./dist", "outDir": "./dist",
"rootDir": "./src", "rootDir": "./src",
"exclude": ["node_modules"] "exclude": ["node_modules"]
} },
"include": ["src"]
} }
``` ```

Loading…
Cancel
Save