-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
30 lines (30 loc) · 870 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
{
"compilerOptions": {
"outDir": "dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom", "es2016", "es2017"],
"sourceMap": false,
"allowJs": false,
"jsx": "react",
"declaration": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"types": ["jest", "node"]
},
"include": ["src/index.tsx", "./src/types.d.ts"],
"exclude": ["node_modules", "dist", "rollup.config.js"],
"typeRoots": ["node_modules/@types", "types.d.ts"],
"paths": {
"lodash/*": ["node_modules/@types/lodash-es/*"]
}
}