Fix dist output

The jest.config.ts file was causing unintended changes to the dist folder

Signed-off-by: James Taylor <jamest@uk.ibm.com>
This commit is contained in:
James Taylor 2021-08-02 16:04:23 +01:00
parent 9f48a42418
commit 4277f4a68f
2 changed files with 14 additions and 4 deletions

View file

@ -10,8 +10,7 @@
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"project": "./tsconfig.json"
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
@ -23,5 +22,13 @@
"argsIgnorePattern": "^_"
}
]
},
"overrides": [
{
"files": ["src/**/*.ts"],
"parserOptions": {
"project": ["./tsconfig.json"]
}
}
]
}

View file

@ -68,5 +68,8 @@
/* Advanced Options */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
}
},
"include": [
"src/"
]
}