-
Notifications
You must be signed in to change notification settings - Fork 15
/
tsconfig.json
28 lines (28 loc) · 973 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
{
"compilerOptions": {
"rootDir": "./src",
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
"module": "es2015" /* Specify module code generation: 'commonjs', 'amd', 'system', 'umd' or 'es2015'. */,
"target": "es5",
"jsx": "react",
"sourceMap": true,
"importHelpers": true,
"declaration": false,
"esModuleInterop": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"strictNullChecks": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"removeComments": true,
"lib": ["es2017", "dom"],
"pretty": true,
"skipLibCheck": false,
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"*": ["src/*", "node_modules/*"]
},
"types": ["@testing-library/jest-dom"]
},
"include": ["./src/**/*", "./types/**/*.d.ts"],
"exclude": ["node_modules", "dist"]
}