Skip to content
Snippets Groups Projects
Select Git revision
  • 94968e6f1483059dbb45946821d7342cf33d0405
  • master default protected
  • docs-improve_user_path_description
  • fix-pipeline
  • ci-change_exercises_image_registry
  • feat-merge_recorder_in_extension
  • feat-default_folder
  • feat-change_user
  • develop protected
  • refactor-mission
  • feat-exercise_automatic_save
  • docs-improve_documentation
  • feat-create_little_container_for_developer
  • feat-local-dev
  • 0.1.12
  • 0.1.11
  • 0.1.10
  • 0.1.5
18 results

tsconfig.json

Blame
  • Mohamed AZIKIOU's avatar
    Mohamed AZIKIOU authored and Mario HOTAJ committed
    21f1fb2a
    History
    tsconfig.json 885 B
    {
      "compilerOptions": {
        "module": "commonjs",
        "target": "es2019",
        "lib": ["ES2019", "dom"],
        "sourceMap": true,
        "outDir": "dist",
        "strict": true,
        "noImplicitAny": false,
        "allowJs": true,
        "types": ["jest", "node"],
        "moduleResolution": "Node",
        "experimentalDecorators": true,
        "emitDecoratorMetadata": true
    
        /* enable all strict type-checking options */
        /* Additional Checks */
        // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
        // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
        // "noUnusedParameters": true,  /* Report errors on unused parameters. */
      },
      "exclude": [
        "node_modules",
        ".vscode-test",
        "dist",
        "out",
        "media",
        "resources",
        "webpack.config.ts",
        "jest.config.ts"
      ]
    }