Add local eslintrc and jsconfig

This commit is contained in:
Clemens Schwaighofer
2023-11-28 11:34:29 +09:00
parent 4e3ceecac8
commit 373a9aff2f
2 changed files with 58 additions and 0 deletions

15
jsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES2020",
"jsx": "react",
"allowImportingTsExtensions": true,
"strictNullChecks": true,
"strictFunctionTypes": true
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}