You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"jsx": "react-jsx", // This is for vscode not to suggest importing React, after react17.
"incremental": true, // This is for faster builds
"allowJs": true/* Allow javascript files to be compiled. */,
"allowSyntheticDefaultImports": true/* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"baseUrl": "src"/* Base directory to resolve non-absolute module names. */,
"esModuleInterop": true/* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"isolatedModules": false,
"experimentalDecorators": true, // used for class decorators.
"noEmit": true/* Do not emit outputs. */,
"resolveJsonModule": true/* Allows importing modules with a ‘.json’ extension, which is a common practice in node projects. */,
"skipLibCheck": true, // Don't type check the node modules
"strict": true/* Enable all strict type-checking options. */