Skip to content

Commit 550a181

Browse files
committed
Write
1 parent e036b35 commit 550a181

File tree

2 files changed

+286
-3
lines changed

2 files changed

+286
-3
lines changed

content/academy/switching_to_typescript/unknown_and_type_casting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ Often times, these features are used in tandem.
100100

101101
## [](#next) Next up
102102

103-
some content
103+
We've now got all the knowledge we need to build a real project in TypeScript, which we're going to do very soon. But, there's one important thing we have to do before writing the code for our project - configure the compiler and understand watch mode. Learn all this in the [next lesson]({{@link switching_to_typescript/watch_mode_and_tsconfig.md}})!
Lines changed: 285 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,294 @@
11
---
22
title: Watch mode & tsconfig.json
3-
description: description
3+
description: Learn how to fine-tune TypeScript for an entire project's needs and efficiently compile numerous TS files at a single time (automagically).
44
menuWeight: 7.7
55
paths:
66
- switching-to-typescript/watch-mode-and-tsconfig
77
---
88

99
# [](#watch-mode-and-tsconfig) Watch mode and tsconfig.json
1010

11-
content
11+
So far, each time we've made changes to our TypeScript code, we've had to run the `tsc FILE_NAME.ts` command in terminal. Very quickly, this becomes repetitive and cumbersome, especially for large projects with more than one file. Luckily, the TypeScript compiler has a special feature called **watch mode**, which will watch a specific file (or all **.ts** files) for any changes. If any changes are made, it will automatically recompile.
12+
13+
> Test out watch mode on a single file by using the `--watch` (or `-w` for short) flag like so: `tsc FILE_NAME --watch`.
14+
15+
## [](#tsconfig) tsconfig.json
16+
17+
If your project has more than one file, it's a necessity to have a `tsconfig.json` file in the root of your project. This is a file which allows you to configure TypeScript to your liking, as well as utilize a "general" watch mode that watches all TS files and recompiles when changes are made.
18+
19+
### [](#creating-the-file) Creating the file
20+
21+
In the next lesson, we'll be learning how to use interfaces in combination with type casting and a few other concepts from the previous lessons by building a small project. Let's create a new directory for this project right now and call it **my-first-typescript-project**. Within the directory, we'll first initialize the project with this command:
22+
23+
```shell
24+
npm init -y
25+
```
26+
27+
Then, in order to tell TypeScript that this is a whole project, we'll run this command:
28+
29+
```shell
30+
tsc --init
31+
```
32+
33+
Notice that a new **tsconfig.json** file has been automatically created. When you open it up, here's what you'll see:
34+
35+
```JSON
36+
{
37+
"compilerOptions": {
38+
/* Visit https://aka.ms/tsconfig.json to read more about this file */
39+
40+
/* Projects */
41+
// "incremental": true, /* Enable incremental compilation */
42+
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
43+
// "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */
44+
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */
45+
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
46+
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
47+
48+
/* Language and Environment */
49+
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
50+
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
51+
// "jsx": "preserve", /* Specify what JSX code is generated. */
52+
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
53+
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
54+
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */
55+
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
56+
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */
57+
// "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */
58+
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
59+
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
60+
61+
/* Modules */
62+
"module": "commonjs", /* Specify what module code is generated. */
63+
// "rootDir": "./", /* Specify the root folder within your source files. */
64+
// "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
65+
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
66+
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
67+
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
68+
// "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */
69+
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
70+
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
71+
// "resolveJsonModule": true, /* Enable importing .json files */
72+
// "noResolve": true, /* Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project. */
73+
74+
/* JavaScript Support */
75+
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
76+
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
77+
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */
78+
79+
/* Emit */
80+
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
81+
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
82+
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
83+
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
84+
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */
85+
// "outDir": "./", /* Specify an output folder for all emitted files. */
86+
// "removeComments": true, /* Disable emitting comments. */
87+
// "noEmit": true, /* Disable emitting files from a compilation. */
88+
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
89+
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */
90+
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
91+
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
92+
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
93+
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
94+
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
95+
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
96+
// "newLine": "crlf", /* Set the newline character for emitting files. */
97+
// "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */
98+
// "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */
99+
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
100+
// "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */
101+
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
102+
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
103+
104+
/* Interop Constraints */
105+
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
106+
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
107+
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */
108+
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
109+
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
110+
111+
/* Type Checking */
112+
"strict": true, /* Enable all strict type-checking options. */
113+
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */
114+
// "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */
115+
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
116+
// "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */
117+
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
118+
// "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */
119+
// "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */
120+
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
121+
// "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */
122+
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */
123+
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
124+
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
125+
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
126+
// "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */
127+
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
128+
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */
129+
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
130+
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
131+
132+
/* Completeness */
133+
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
134+
"skipLibCheck": true /* Skip type checking all .d.ts files. */
135+
}
136+
}
137+
```
138+
139+
### [](#bare-basic-configurations) Bare basic configurations
140+
141+
As you can see, there are a whole lot of options, which is quite overwhelming. Don't worry, we'll be walking you through all of the important ones, so for now let's delete all of the contents of this **tsconfig.json** and start from scratch.
142+
143+
#### [](#excluding-files-and-folders) Excluding files and folders
144+
145+
It is possible to tell TypeScript which files to compile, and which ones to ignore. The **exclude** option in **tsconfig.json** holds an array of file/folder names/paths that should **not** be watched.
146+
147+
```JSON
148+
{
149+
"compilerOptions": {},
150+
"exclude": ["node_modules"]
151+
}
152+
```
153+
154+
In our case, we don't want to compile any TypeScript code that could possibly be living in the **node_modules** folder that will appear when we start installing dependencies, so we've added it to the array.
155+
156+
#### [](#telling-typescript-what-to-compile) Telling TypeScript which files to compile
157+
158+
Along with the **exclude** property is the **include** property, which holds an array of files/paths to check when compiling. Anything not included within the array will be ignored.
159+
160+
In the next project, we are going to follow a very common pattern with TypeScript projects by keeping all of our TS files in a folder named **src**. So, let's create a **src** folder within **my-first-typescript-project**, then add its path to the **include** property's array.
161+
162+
```JSON
163+
{
164+
"compilerOptions": {},
165+
"exclude": ["node_modules"],
166+
"include": ["src/"]
167+
}
168+
```
169+
170+
#### [](#specify-where-to-put-compiled-files) Specify where to put compiled files
171+
172+
It's common practice in TypeScript projects to keep **.ts** files separate from their respective compiled **.js** files. Usually, the compiled files are placed in a folder named **dist** or **build**. Let's use **dist** for our project.
173+
174+
Within **compilerOptions**, the **outDir** property tells TypeScript just that - where to place all compiled files.
175+
176+
```JSON
177+
{
178+
"compilerOptions": {
179+
"outDir": "dist/"
180+
},
181+
"exclude": ["node_modules"],
182+
"include": ["src/"]
183+
}
184+
```
185+
186+
This time, you don't have to manually create a folder named **dist**. During compile time, TypeScript will detect whether or not the folder exists and automatically create it if it doesn't.
187+
188+
> We also recommend learning about [**rootDir**](https://www.typescriptlang.org/tsconfig/#rootDir).
189+
190+
### [](#important-basic-configurations) Important basic configurations
191+
192+
Other than telling TypeScript **what** files it should (and should not) compile, we also need to tell it **how** they should be compiled.
193+
194+
#### [](#setting-the-target) Setting the target
195+
196+
**target** within **compilerOptions** tells TypeScript which JavaScript version you'd like to compile your code into. This allows for the ability to, for example, use ES7 features during development time, but support environments that only work with the ES3 version of JavaScript. We'll use **esnext**.
197+
198+
```JSON
199+
{
200+
"compilerOptions": {
201+
"target": "esnext",
202+
"outDir": "dist/"
203+
},
204+
"exclude": ["node_modules"],
205+
"include": ["src/"]
206+
}
207+
```
208+
209+
#### [](#setting-libs) Setting libs
210+
211+
By default TypeScript will allow us to use things like `document.querySelector()` or `window.reload()` even though we're writing Node.js code where those global objects don't exist. This is because TypeScript automatically has these libraries enabled. In order to prevent this, we'll get more specific about the **lib**s we'd like to use.
212+
213+
```JSON
214+
{
215+
"compilerOptions": {
216+
"target": "esnext",
217+
"lib": ["ES2015", "ES2016", "ES2018", "ES2019.Object", "ES2018.AsyncIterable", "ES2020.String", "ES2019.Array"],
218+
"outDir": "dist/"
219+
},
220+
"exclude": ["node_modules"],
221+
"include": ["src/"]
222+
}
223+
```
224+
225+
> Learn more about the **lib** configuration option [in the TypeScript documentation](https://www.typescriptlang.org/tsconfig#lib).
226+
227+
#### [](#removing-comments) Removing comments
228+
229+
This one is pretty straightforward. **removeComments** allows you to keep the comments which are useful in the code during development out of your compiled files.
230+
231+
```JSON
232+
{
233+
"compilerOptions": {
234+
"target": "esnext",
235+
"lib": ["ES2015", "ES2016", "ES2018", "ES2019.Object", "ES2018.AsyncIterable", "ES2020.String", "ES2019.Array"],
236+
"outDir": "dist/",
237+
"removeComments": true
238+
},
239+
"exclude": ["node_modules"],
240+
"include": ["src/"]
241+
}
242+
```
243+
244+
#### [](#dont-compile-if-errors) Refusing to compile if there are any errors
245+
246+
In most statically typed programming languages, the compiler will refuse to produce an output until all errors have been fixed; however, TypeScript by default will still compile even if there are errors. To enable the more strict functionality that other languages support, set **noEmitOnError** to **true**.
247+
248+
```JSON
249+
{
250+
"compilerOptions": {
251+
"target": "esnext",
252+
"lib": ["ES2015", "ES2016", "ES2018", "ES2019.Object", "ES2018.AsyncIterable", "ES2020.String", "ES2019.Array"],
253+
"outDir": "dist/",
254+
"removeComments": true,
255+
"noEmitOnError": true
256+
},
257+
"exclude": ["node_modules"],
258+
"include": ["src/"]
259+
}
260+
```
261+
262+
#### [](#strict-type-checking) Adding strict type checking
263+
264+
TypeScript has [multiple options](https://learntypescript.dev/11/l6-strictness) for strict type checking that can be configured. To enable all of them, set **strict** to **true** (this is recommended).
265+
266+
```JSON
267+
{
268+
"compilerOptions": {
269+
"target": "esnext",
270+
"lib": ["ES2015", "ES2016", "ES2018", "ES2019.Object", "ES2018.AsyncIterable", "ES2020.String", "ES2019.Array"],
271+
"outDir": "dist/",
272+
"removeComments": true,
273+
"noEmitOnError": true,
274+
"strict": true
275+
},
276+
"exclude": ["node_modules"],
277+
"include": ["src/"]
278+
}
279+
```
280+
281+
## [](#watch-mode) Watch mode
282+
283+
Now that you've finished configuring the **tsconfig.json** file, go ahead and create an **index.ts** file in the **src** folder. Because we've configured this project with TypeScript, we can just run this command:
284+
285+
```shell
286+
## -w is the shortened version of the --watch flag
287+
tsc -w
288+
```
289+
290+
And our files in **src** will automatically compile into a folder named **dist**, and one that change will be recompiled.
291+
292+
## [](#next) Next up
293+
294+
something

0 commit comments

Comments
 (0)