forked from TeamRaccoons/Unified-Wallet-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 999 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"jsx": "preserve",
"target": "ESNext",
"module": "ESNext",
"strict": true,
"skipLibCheck": true,
// Ensure that .d.ts files are created by tsc, but not .js files
"declaration": true,
"declarationDir": "dist/types",
// Ensure that Babel can safely transpile files in the TypeScript project
"isolatedModules": true,
"jsxImportSource": "@emotion/react", // Add the css prop
// ignore some typings check
"noUnusedParameters": false,
"noUnusedLocals": false,
"noImplicitReturns": false,
"noImplicitAny": false,
"baseUrl": ".",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true
},
"include": ["src", "types", "lib/index.tsx"],
"exclude": ["node_modules", "dist"]
}