comparison react_games/tsconfig.json @ 37:fb9bcd3145cb

[ReactGames] Few games I made using react just to practice few things.
author MrJuneJune <me@mrjunejune.com>
date Mon, 01 Dec 2025 20:22:47 -0800
parents
children
comparison
equal deleted inserted replaced
36:84672efec192 37:fb9bcd3145cb
1 {
2 "compilerOptions": {
3 "target": "ES2020",
4 "module": "Node16",
5 "moduleResolution": "node16",
6 "jsx": "react-jsx",
7 "esModuleInterop": true,
8 "strict": true,
9 "lib": ["DOM", "ES2020"],
10 "allowImportingTsExtensions": true,
11 "types": ["@types/node", "@types/react", "@types/react-dom"]
12 },
13 "include": ["src"]
14 }
15