-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
25 lines (25 loc) · 892 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2019",
"module": "commonjs",
"lib": ["es2020", "ESNext", "DOM"],
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": true,
"allowJs": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"declaration": true,
"sourceMap": true,
/* Strict Type-Checking Options */
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
"strictNullChecks": true /* Enable strict null checks. */,
"noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */
},
"include": ["src/**/*", "types", "global.d.ts"],
"files": ["global.d.ts"]
}