1
0
This repository has been archived on 2022-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
twitch-channel-redemptions/tsconfig.json

23 lines
588 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"target": "ES2017",
"module": "CommonJS",
"moduleResolution": "Node",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
// "noImplicitAny": true, // enabled on strict mode
"noImplicitReturns": true,
// "noImplicitThis": true, // enabled on strict mode
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true
},
"files": ["src/index.ts"],
"include": ["src/**/*"]
}