What does tsconfig.json rebuild?

On a Mac with Sublime Text 3 and the Microsoft Typescript package.

When I add a .ts file, and I have a "filesGlob" entry in the tsconfig file, and something or someone I thought would automatically expand the "files" entry based on what it finds. It doesn't happen

What bit am I missing?

+3


source to share


3 answers


What bit am I missing



Currently filesGlob

refers to atom-typescript

: https://github.com/TypeStrong/atom-typescript/blob/master/docs/tsconfig.md#filesglob (I just updated the docs to make this clearer).

+2


source


This package https://github.com/Phaiax/ArcticTypescript supports the functionality file-glob

introduced atom-typescript

.



0


source


You can use something like this to generate a file property using the filesGlob templates https://www.npmjs.com/package/tsconfig-glob regardless of the IDE

0


source







All Articles