-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
35 lines (34 loc) · 1.02 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
{
"compilerOptions": {
"strictFunctionTypes": true, /* Enable strict checking of function types. */
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"module": "commonjs",
"target": "es2020",
"moduleResolution": "node",
"noEmitOnError": true,
"noErrorTruncation": true,
"noImplicitAny": true,
"noImplicitThis": true,
"preserveConstEnums": true,
"resolveJsonModule": true,
"skipLibCheck": true, // https://www.typescriptlang.org/tsconfig#skipLibCheck
"strict": false,
"strictNullChecks": true,
"declaration":true,
"baseUrl": ".",
"outDir": "./build"
},
"include": [
"**/*.ts",
"**/*.d.ts",
"global.d.ts"
],
"exclude": [
"node_modules"
]
}