UNPKG

l1-lottery-contracts

Version:

This repo contains smart contracts and related scripts for ZkNoid L1 Lottery proposed [here](https://forums.minaprotocol.com/t/zknoid-l1-lottery/6269)

25 lines (24 loc) 703 B
{ "compilerOptions": { "target": "es2020", "module": "es2022", "lib": ["dom", "esnext"], "outDir": "./build", "rootDir": ".", "strict": true, "strictPropertyInitialization": false, // to enable generic constructors, e.g. on CircuitValue "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "esModuleInterop": true, "moduleResolution": "node", "experimentalDecorators": true, "emitDecoratorMetadata": true, "allowJs": true, "declaration": true, "sourceMap": true, "noFallthroughCasesInSwitch": true, "allowSyntheticDefaultImports": true, "useDefineForClassFields": false, }, "include": ["./src", "./scripts"] }