mirror of
https://github.com/factorgroup/nightmarket.git
synced 2026-01-09 13:37:59 -05:00
49 lines
955 B
JSON
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",
|
|
]
|
|
} |