https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 795c53a786c01e1ae0fb7b73c62af9df1870b26c authored by Nathan Shively-Sanders on 07 September 2022, 18:45:40 UTC
JSDoc comment parsing supports multiline backticks
Tip revision: 795c53a
tsconfig.json
{
    "compilerOptions": {
        "strict": true,
        "removeComments": false,
        "declaration": false,
        "sourceMap": true,
        "newLine": "lf",
        "target": "es6",
        "module": "commonjs",
        "types": ["node"],
        "lib": ["es6", "scripthost"],
    },

    "include": ["*.ts"]
}
back to top