mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
/* Language and Environment */
|
||||
"target": "ES2022",
|
||||
"lib": ["ES2022"],
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
|
||||
/* Type Checking */
|
||||
"strict": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"noImplicitOverride": true,
|
||||
"allowUnusedLabels": false,
|
||||
"allowUnreachableCode": false,
|
||||
|
||||
/* Modules */
|
||||
"resolveJsonModule": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
|
||||
/* Emit */
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"sourceMap": true,
|
||||
"removeComments": true,
|
||||
"newLine": "lf",
|
||||
|
||||
/* Projects */
|
||||
"composite": true,
|
||||
"incremental": true,
|
||||
"tsBuildInfoFile": ".tsbuildinfo",
|
||||
|
||||
/* Completeness */
|
||||
"skipLibCheck": true,
|
||||
|
||||
/* Output */
|
||||
"outDir": "dist",
|
||||
"rootDir": "."
|
||||
},
|
||||
"references": [
|
||||
{ "path": "./cli/install" },
|
||||
{ "path": "./cli/join-testnet" },
|
||||
{ "path": "./packages/es" },
|
||||
{ "path": "./packages/sdk" },
|
||||
{ "path": "./packages/ui" },
|
||||
{ "path": "./web/api" },
|
||||
{ "path": "./web/auth" },
|
||||
{ "path": "./web/dash" }
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"**/node_modules",
|
||||
"dist",
|
||||
"**/dist",
|
||||
"build",
|
||||
"**/build",
|
||||
"coverage",
|
||||
"**/coverage",
|
||||
".turbo",
|
||||
"**/.turbo"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user