Skip to content

Instantly share code, notes, and snippets.

@danmactough
Created December 12, 2020 15:06
Show Gist options
  • Save danmactough/d16ecdec9e7adb2b9c5d3c3d71bea7b7 to your computer and use it in GitHub Desktop.
Save danmactough/d16ecdec9e7adb2b9c5d3c3d71bea7b7 to your computer and use it in GitHub Desktop.

Revisions

  1. danmactough created this gist Dec 12, 2020.
    16 changes: 16 additions & 0 deletions tsconfig.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    {
    "compilerOptions": {
    /* Visit https://aka.ms/tsconfig.json to read more about this file */
    "module": "none" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
    "allowJs": true /* Allow javascript files to be compiled. */,
    "checkJs": true /* Report errors in .js files. */,
    "noEmit": true /* Do not emit outputs. */,
    "noImplicitAny": false /* Raise error on expressions and declarations with an implied 'any' type. */,
    "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
    "skipLibCheck": true /* Skip type checking of declaration files. */,
    "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
    },
    /* You'll need to set these to glob patterns that match your project */
    "include": ["**/*"],
    "exclude": ["coverage", "**/*.test.*"]
    }