Update tsconfig.json

pull/26913/head
Michael Telatynski 2024-01-23 19:39:45 +00:00 committed by GitHub
parent 58059d1f0a
commit 7f0434523f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@
"declaration": true,
"jsx": "react",
"lib": ["es2021", "dom", "dom.iterable"],
"strict": true
"strict": true,
},
"include": [
"./node_modules/matrix-js-sdk/src/@types/*.d.ts",
@ -26,12 +26,12 @@
"./src/**/*.tsx",
"./test/**/*.ts",
"./test/**/*.tsx",
"./scripts/*.ts"
"./scripts/*.ts",
],
"ts-node": {
"files": true,
"moduleTypes": {
"*": "cjs"
}
}
"*": "cjs",
},
},
}