-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
17 lines (17 loc) · 1.6 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"lib": ["dom", "dom.Iterable", "esnext"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
"jsx": "react-jsx", /* Specify what JSX code is generated. */
"noEmit": true, /* Disable emitting files from a compilation. */
"strict": true, /* Enable all strict type-checking options. */
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
"resolveJsonModule": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */
},
"include": ["src"]
}