https://github.com/Microsoft/TypeScript
Raw File
Tip revision: f54ece725e4c883d1122dc00245fb1bbc30c2829 authored by navya9singh on 21 March 2023, 22:24:24 UTC
generating list of file with test cases
Tip revision: f54ece7
tsconfig.json
{
    "compilerOptions": {
        "lib": [
            "es2018"
        ],
        "module": "Node16",
        "moduleResolution": "Node16",
        "target": "es2018",
        "noEmit": true,
        // "declaration": true,
        // "emitDeclarationOnly": true,

        "strict": true,
        "skipLibCheck": true,
        "forceConsistentCasingInFileNames": true,
        "allowUnusedLabels": false,
        "noImplicitOverride": true,
        "noImplicitReturns": true,
        "noUnusedLocals": true,
        "noUnusedParameters": true,
        "allowJs": true,
        "checkJs": true
    },

    "include": [
        "**/*.mjs", "**/*.cjs"
    ]
}
back to top