-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 1002 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"declaration": false,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["es2022", "dom", "dom.iterable"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"moduleDetection": "force",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": false,
"paths": {
"*": ["./node_modules/@digidem/types/vendor/*/index.d.ts"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2022"
// TODO: Enable this when rpc-reflector release with
// https://github.com/digidem/rpc-reflector/commit/d4963871dbbf7e3c3dfebef1e07b6465c2172775 and
// https://github.com/digidem/rpc-reflector/commit/e7c1becbc6fa7c9c1345b99ca20fc3331dc756af
// is released
// "verbatimModuleSyntax": true
},
"include": ["src/**/*", "test/**/*", "*.config.js"],
"exclude": ["node_modules"]
}