mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
// Enable latest features
|
|
"lib": ["ESNext"],
|
|
"target": "ESNext",
|
|
"module": "Preserve",
|
|
"moduleDetection": "force",
|
|
"jsx": "react-jsx",
|
|
"allowJs": false,
|
|
"importHelpers": true,
|
|
"incremental": true,
|
|
// Bundler mode
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
// Best practices
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
// Some stricter flags (disabled by default)
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"baseUrl": "./",
|
|
"preserveConstEnums": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
// Speed
|
|
"tsBuildInfoFile": "tmp/tsconfig.tsbuildinfo",
|
|
"assumeChangesOnlyAffectDirectDependencies": true,
|
|
"paths": {
|
|
"utils": ["./utils/index.ts"],
|
|
"utils/types": ["./utils/types.ts"],
|
|
"utils/constants": ["./utils/constants.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"utils/*.ts",
|
|
"scripts/*.ts",
|
|
"suites/**/*.ts",
|
|
"cli/**/*.ts",
|
|
"wagmi.config.ts",
|
|
"contract-bindings/*.ts",
|
|
"launcher/**/*.ts",
|
|
"framework/**/*.ts"
|
|
]
|
|
}
|