{
    /*
   * Possible values:
   * - the name of a built-in config
   * - the name of an NPM module which has a "main" file that exports a config object
   * - a relative path to a JSON file
   */
    "extends": "tslint:latest",
    "rules": {
        /*
     * Any rules specified here will override those from the base config we are extending
     */
        "no-constructor-vars": false,
        "object-literal-sort-keys": false,
        "ordered-imports": false,
        "no-reference": false,
        "no-var-requires": false,
        "no-console": [
            false
        ]
    },
    "rulesDirectory": [
        /*
     * A list of relative or absolute paths to directories that contain custom rules.
     * See the Custom Rules documentation below for more details.
     */
    ]
}