Answers for "tsconfig.json basic configuration"

1

tsconfig.json basic configuration

{
    "compilerOptions": {
        "target": "es5",
        "module": "commonjs",
        "outDir": "public/js"
        "rootDir": "src",
        "strict": true,
        "esModuleInterop": true
        "forceConsistentCasingInFileNames": true
    },
    "include": ["src"]
}
Posted by: Guest on May-25-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language