mirror of
https://github.com/logos-messaging/waku-react.git
synced 2026-01-02 06:03:10 +00:00
* add react and typecript * add react, rollup and ts * add waku dependencies * add create hooks, providers and update typings path * extend create hooks and provider with error/loading state * rename to isLoading * create useContentPair hook * add protocols property and bootstrap with remote peers * add useFilterSubscribe * add eslint & fix issues * add prettier & fix * add jest * add husky * add bundlewatch
30 lines
741 B
JSON
30 lines
741 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"module": "es2015",
|
|
"target": "es2018",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"jsx": "react",
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"examples",
|
|
"src/*.test.ts",
|
|
"src/*.test.tsx",
|
|
"src/__mocks__"
|
|
]
|
|
}
|