forked from tailcallhq/tailcallhq.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
16 lines (16 loc) · 951 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@docusaurus/tsconfig",
"compilerOptions": {
"jsx": "react",
"baseUrl": ".",
"strict": true, // Enable all strict type checking options
"noImplicitAny": true, // Raise error on expressions and declarations with an implied 'any' type
"strictNullChecks": true, // When type checking, take into account 'null' and 'undefined'
"strictFunctionTypes": true, // Ensure function parameter and return type matching is more accurate
"strictBindCallApply": true, // Enable stricter checking of the 'bind', 'call', and 'apply' methods
"strictPropertyInitialization": true, // Ensure class properties are initialized in the constructor
"noImplicitThis": true, // Raise error on 'this' expressions with an implied 'any' type
"alwaysStrict": true // Parse in strict mode and emit "use strict" for each source file
}
}