Removed unused tsconfig, fixed link in README

This commit is contained in:
Maciej Caderek
2022-05-03 06:20:57 +02:00
parent 076f65cc06
commit 462198ecca
2 changed files with 1 additions and 22 deletions

View File

@@ -21,7 +21,7 @@ For development:
- run `npm start` - it will start the development server, - run `npm start` - it will start the development server,
- start coding ;) - 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 ## Contributors

View File

@@ -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"]
}