forked from xcomponent/react-gojs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
26 lines (26 loc) · 827 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
{
"compilerOptions": {
"outDir": "dist",
"module": "commonjs",
"target": "es5",
"declaration": true,
"lib": ["dom", "es6", "scripthost"],
"sourceMap": true,
"allowJs": false,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"esModuleInterop": true
},
"exclude": ["node_modules", "build", "scripts", "acceptance-tests", "jest", "**/*.test.ts", "**/*.test.tsx"],
"include": ["src/**/*"],
"types": ["typePatches"]
}