forked from iamhosseindhv/notistack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 935 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
{
"include": ["src"],
"compilerOptions": {
"strict": true,
"module": "esnext",
"target": "es5",
"esModuleInterop": true,
"moduleResolution": "node",
"baseUrl": "./",
"skipLibCheck": true,
"declaration": false,
"lib": ["esnext","dom"],
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"importHelpers": true,
"sourceMap": true,
"rootDir": "./src",
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"paths": {
"*": ["src/*", "node_modules/*"]
},
},
"typedocOptions": {
"inputFiles": ["./src/index.d.ts"],
"mode": "file",
"json": "typedoc.json",
"excludeExternals": true,
"externalPattern": "**/node_modules/**",
"ignoreCompilerErrors": true,
"includeDeclarations": true,
}
}