Typescript. Are Triple-Slash references still required when using “import from”

后端 未结 2 2159
小蘑菇
小蘑菇 2021-02-05 12:25

In old versions of Typescript it was required to add the famous

/// 

label to add the required references. Now after version

2条回答
  •  迷失自我
    2021-02-05 12:50

    First off, I don't believe filesGlob is officially supported yet: https://github.com/Microsoft/TypeScript/issues/1927

    Now as far as the triple slash reference, it is not required as long as everything is referenced in files in tsconfig.json.

    You'll find that if you use a tool like tsd or typings to manage type definitions for your external libraries, they will create a single file that you include in tsconfig.json; that single file will use triple slash references to include the rest of the files.

    You can find more information about triple slash references in the TypeScript Handbook

提交回复
热议问题