-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
24 lines (24 loc) · 1004 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
{
"compilerOptions": {
"target" : "ESNext",
"outDir" : "./dist",
"module" : "NodeNext",
"noEmit" : true,
"strict" : true,
"sourceMap" : true,
"incremental" : true,
"skipLibCheck" : true,
"noImplicitAny" : true,
"noImplicitThis" : true,
"removeComments" : true,
"esModuleInterop" : true,
"strictNullChecks" : true,
"noImplicitReturns" : true,
"resolveJsonModule" : true,
"preserveConstEnums" : true,
"noImplicitOverride" : true,
"noUncheckedIndexedAccess" : true,
"forceConsistentCasingInFileNames" : true,
"noPropertyAccessFromIndexSignature": true,
}
}