-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
40 lines (40 loc) · 1.09 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
39
40
{
"compilerOptions": {
"target": "esnext",
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"module": "esnext",
"lib": ["esnext"],
"esModuleInterop": true,
"declaration": false,
"noEmit": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {},
"noImplicitAny": false,
/**
* Maybe switch to true at some point? There would need to be A LOT of error handling changes.
* https://www.typescriptlang.org/tsconfig#useUnknownInCatchVariables
*/
"useUnknownInCatchVariables": false,
/**
* Setting to true will start producing TS errors that are inside libraries we use.
* https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes
*/
"exactOptionalPropertyTypes": false
},
"include": ["./**/*.ts"],
"exclude": ["node_modules"],
"ts-node": {
"files": false,
"typeCheck": false,
"transpileOnly": true,
"compilerOptions": {
"skipLibCheck": true,
"target": "es2016",
"module": "commonjs"
}
}
}