-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 1.1 KB
/
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
34
35
36
{
"include": ["./src/**/*"],
"compilerOptions": {
"skipLibCheck": true, // https://stackoverflow.com/questions/52399839/typescript-duplicate-identifier-librarymanagedattributes/52404148#52404148
"target": "es2017",
"module": "es2015",
"lib": ["es2017", "dom"],
"jsx": "react",
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"*": ["./types/*"],
"test/test-utils": ["./test/test-utils"],
"react-intl-tel-input": ["./types/react-intl-tel-input"]
},
"types": ["node", "jest", "@types/testing-library__jest-dom"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"traceResolution": false,
"listEmittedFiles": false,
"listFiles": false,
"pretty": true
}
}