From 0de70980c418669301638d02c6fb3a37d4a7327c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dudak?= Date: Tue, 10 May 2022 22:59:54 +0200 Subject: [PATCH] [examples] Update remix example's tsconfig with required values --- examples/remix-with-typescript/tsconfig.json | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/examples/remix-with-typescript/tsconfig.json b/examples/remix-with-typescript/tsconfig.json index 705bb4a240a7fb..499289c5d35f8f 100644 --- a/examples/remix-with-typescript/tsconfig.json +++ b/examples/remix-with-typescript/tsconfig.json @@ -1,18 +1,20 @@ { "include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"], "compilerOptions": { - "lib": ["DOM", "DOM.Iterable", "ES2019"], + "allowJs": true, + "baseUrl": ".", "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "isolatedModules": true, "jsx": "react-jsx", + "lib": ["DOM", "DOM.Iterable", "ES2019"], "moduleResolution": "node", - "resolveJsonModule": true, - "target": "ES2019", - "strict": true, + "noEmit": true, // Remix takes care of building everything in `remix build`. "paths": { "~/*": ["./app/*"] }, - - // Remix takes care of building everything in `remix build`. - "noEmit": true + "resolveJsonModule": true, + "strict": true, + "target": "ES2019" } }