Files
nightmarket/tsconfig.json
2022-04-21 23:13:15 +01:00

49 lines
955 B
JSON

{
"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",
]
}