From 462198eccac803617c5dcf140d995ad8bb33a5b4 Mon Sep 17 00:00:00 2001 From: Maciej Caderek Date: Tue, 3 May 2022 06:20:57 +0200 Subject: [PATCH] Removed unused tsconfig, fixed link in README --- README.md | 2 +- tsconfig.scripts.json | 21 --------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 tsconfig.scripts.json diff --git a/README.md b/README.md index 19cc921..3d90e5c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ For development: - run `npm start` - it will start the development server, - start coding ;) -Preview of the current dev version is available here: [https://sharechess-dev.netlify.app/](sharechess-dev.netlify.app) +Preview of the current dev version is available here: [sharechess-dev.netlify.app/](https://sharechess-dev.netlify.app) ## Contributors diff --git a/tsconfig.scripts.json b/tsconfig.scripts.json deleted file mode 100644 index 3289514..0000000 --- a/tsconfig.scripts.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "compilerOptions": { - "target": "ESNext", - "useDefineForClassFields": true, - "module": "CommonJS", - "lib": ["ESNext", "DOM"], - "moduleResolution": "Node", - "strict": true, - "sourceMap": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "noEmit": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noImplicitReturns": true, - "jsx": "preserve", - "jsxImportSource": "solid-js", - "types": ["vite/client", "node"] - }, - "include": ["./src", "public/gif.worker.js", "public/gif.worker.js"] -}