forked from MOIMOB/drinkable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (28 loc) · 985 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
26
27
28
29
30
{
"compileOnSave": false,
"compilerOptions": {
"module": "ESNext",
"skipLibCheck": true,
"removeComments": true,
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"target": "ES2020",
"moduleResolution": "node",
"baseUrl": "src",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noUncheckedIndexedAccess": true,
// When all of this is uncommented, remove and use: strict: true instead
// "alwaysStrict": true,
// "strictNullChecks": true,
// "strictPropertyInitialization": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
// "noImplicitAny": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true
},
"include": ["src", "tests", "capacitor.config.ts", "jest.config.ts", "cypress.config.ts"]
}