-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 738 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 738 Bytes
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
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/",
"sourceMap": true,
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom"],
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"importHelpers": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"declaration": true,
"typeRoots": ["node_modules/@types", "typings"],
"esModuleInterop": true,
"skipLibCheck": true
},
"include": ["./src/**/*", "@types/global.d.ts"],
"exclude": ["node_modules", "build", "scripts", "acceptance-tests", "webpack", "jest", "src/setupTests.ts"]
}