-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
32 lines (30 loc) · 1.02 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
{
"compilerOptions": {
"outDir": "dist",
"module": "esnext",
"target": "ES2015",
"lib": ["es6", "dom", "es2016", "es2017"],
"jsx": "react-jsx",
"declaration": true, // generate declaration files
"moduleResolution": "node",
"noUnusedLocals": false, // revert
"noUnusedParameters": false, // revert
"esModuleInterop": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true // doesn't check for errors in dependencies' libraries
// "target": "es2016",
// "forceConsistentCasingInFileNames": true,
// "strict": true,
// "jsx": "react",
// // Generating declaration files
// "declarationMap": true,
// "sourceMap": true,
// "emitDeclarationOnly": true
},
"include": ["src"],
"exclude": ["node_modules", "examples", "dist"]
}