Replace CancelToken to AbortSignal (#19352)

This commit is contained in:
Yamagishi Kazutoshi 2022-10-14 10:16:37 +09:00 committed by GitHub
parent f01310dadb
commit 219c38b921
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 93 additions and 38 deletions

22
jsconfig.json Normal file
View file

@ -0,0 +1,22 @@
{
"compilerOptions": {
"allowJs": true,
"baseUrl": "./app/javascript",
"checkJs": false,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "ES2022",
"moduleResolution": "node",
"noEmit": true,
"resolveJsonModule": true,
"strict": false,
"target": "ES2022"
},
"exclude": [
"**/build/*",
"**/node_modules/*",
"**/public/*",
"**/vendor/*"
]
}