mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-01-10 12:15:49 +00:00
680ce2f79b
* fix example hot module replacement * add turbo * migrate to vite * use turbo for running scripts * migrate testing to vitest * set yarn in settings.json * set noEmit in base tsconfig * update yarn.lock * move protos to src * remove relative paths from status-js * remove unused files * update declaration dir * use vite-node as a debugging runtime * fix test * unify tests * fix test case typo
31 lines
957 B
JSON
31 lines
957 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
// "extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"target": "ES2020",
|
|
"jsx": "preserve",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
// "emitDeclarationOnly": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": 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
|
|
}
|
|
}
|