forked from Thanhal-P-A/rn-animated-ellipsis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (31 loc) · 895 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
{
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/__tests__/**", "**/*.test.ts", "**/*.test.tsx"],
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"target": "ESNext",
"jsx": "react-jsx",
"lib": ["ES2017", "DOM"],
"module": "ESNext",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"sourceMap": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
}
}