Typescript Compilator Flashcards

1
Q

Como se compilan todos los archivos .ts de un proyecto?

A
  • Primero se hace $tsc –init

- Luego se hace $tsc —w (watch mode)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Cual es la funcion del tsconfig.json?

A

Setear la configuracion del compiler.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Como se hace para no compilar un archivo en especifico?

A

Agregar la propiedad “exclude”: [ “analitics.ts” ] al tsconfig.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Que se hace para no compilar la dependencias?

A

“exclude”: [ “node_modules” ]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Para que sirve sourceMap?

A

Para debugguear el .ts en el navegador.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly