{ "compilerOptions": { "target": "ESNext", "useDefineForClassFields": true, "lib": [ "ESNext", "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, "noImplicitAny": false, /* Paths */ "baseUrl": "./src", "paths": { "@*": [ "./*" ] } }, "include": [ "src" ], "references": [ { "path": "./tsconfig.node.json" } ] }