forked from raystack/apsara
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
38 lines (34 loc) · 1.23 KB
/
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
{
"compilerOptions": {
/* Basic Options */
"baseUrl": "./",
"outDir": "./build/",
"target": "es6",
"module": "esnext",
"lib": ["es6", "dom", "es2016", "es2017", "es2019"],
"jsx": "react",
"sourceMap": true,
/* Strict Type-Checking Options */
"strict": true,
"allowJs": true,
/* Additional Checks */
"importHelpers": true,
"removeComments": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
/* Module Resolution Options */
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
/* Advanced Options */
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"exclude": ["build", "node_modules", "storybook-static", "**/*.spec.ts", "**/*.stories.[tj]sx", "**/*.test.[tj]sx"]
}