diff --git a/index.html b/index.html index ff93803..3b6ad59 100644 --- a/index.html +++ b/index.html @@ -2,11 +2,15 @@ - + - Tauri + React + Typescript + Browserlay + -
diff --git a/tsconfig.json b/tsconfig.json index a7fc6fb..82f1387 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,24 +1,23 @@ { "compilerOptions": { - "target": "ES2020", + "target": "ES2022", "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], + "lib": ["ES2022", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, - - /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", - - /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "noImplicitReturns": true, + "noUncheckedIndexedAccess": true, + "exactOptionalPropertyTypes": true }, "include": ["src"], "references": [{ "path": "./tsconfig.node.json" }]