{ "compilerOptions": { "target": "ES2020", "module": "commonjs", "alwaysStrict": true, "allowJs": true, "noImplicitAny": false, "forceConsistentCasingInFileNames": true, "noUnusedLocals": false, "noUnusedParameters": false, "esModuleInterop": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "sourceMap": true, "strict": true, "resolveJsonModule": true, "skipLibCheck": true, "outDir": "./build", "baseUrl": ".", "paths": { "@df_client/*": [ "./client/client_declarations/*" ], "@df/*": [ "./client/client_declarations/src/Backend/GameLogic/*" ] }, "jsx": "react", "jsxFactory": "h", "jsxFragmentFactory": "Fragment", "types": [ "preact" ] }, "exclude": [ "node_modules/**" ], "include": [ "./circuits", "./client", "./contracts" // "./scripts" // "./typechain-types" ], "files": [ "./hardhat.config.ts", "./client/util/snarkHelper.ts", ] }