[ts-migrate][test] Init tsconfig.json file

Co-authored-by: ts-migrate <>
This commit is contained in:
Max Leiter 2022-05-02 22:38:39 -07:00
parent 36e7a61007
commit 3a7c9006bb
No known key found for this signature in database
GPG key ID: A3512F2F2F17EBDA
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,6 @@ check-leaks: true
recursive: true
reporter: dot
interactive: false
spec: "test/**/*.js"
spec: "test/**/*.ts"
ignore: "test/client/**"
require: "test/fixtures/env"

View file

@ -1,9 +1,10 @@
{
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"instrument": true,
"temp-dir": "./node_modules/.cache/nyc_output",
"exclude": ["webpack.config*.js"],
"include": ["defaults", "src", "*.js"],
"include": ["defaults", "src", "*.ts"],
"reporter": ["json", "text-summary"],
"clean": false
}