-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.json
43 lines (43 loc) · 995 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"resolveJsonModule": true,
"allowJs": true,
"moduleResolution": "node",
"outDir": "dist",
"lib": ["esnext", "dom"],
"sourceMap": true,
"rootDir": ".",
"forceConsistentCasingInFileNames": true,
"strictFunctionTypes": false, // This is required by Jantix
"strict": true,
"noStrictGenericChecks": false,
"esModuleInterop": true,
"suppressImplicitAnyIndexErrors": false,
"noUnusedLocals": true,
"typeRoots": ["./node_modules/@types"],
"types": ["react/next", "react-dom/next"],
"jsx": "react",
"baseUrl": ".",
"paths": {
"*": ["./node_modules/@types/*", "*"]
}
},
"paths": {
"src/*": ["src/**/*"]
},
"include": ["./index.d.ts", "src/**/*"],
"exclude": [
"node_modules",
"dist",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"deprecated",
"backend",
"faust-compiler",
"engine"
]
}