wakuconnect-chat-sdk/tsconfig.base.json
Pavel 1a1e86195e
Improve TypeScript monorepo configuration (#226)
* Unify TypeScript configuration

* Fix package.json target fields
2022-02-23 16:16:42 +01:00

28 lines
824 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"jsx": "preserve",
"declaration": true,
"declarationMap": true,
// "emitDeclarationOnly": true,
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
// "noEmit": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// "exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
// "noImplicitReturns": true,
// "noUncheckedIndexedAccess": true,
// "noPropertyAccessFromIndexSignature": true /* Enforces using indexed accessors for keys declared using an indexed type */,
"skipLibCheck": true,
"pretty": true
}
}