-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (33 loc) · 1.45 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"include": ["src/**/*"],
"compilerOptions": {
/* Specify what module code is generated. */
"module": "ES2022",
/* Specify how TypeScript looks up a file from a given module specifier. */
"moduleResolution": "bundler",
/* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"target": "ES2022",
/* Specify an output folder for all emitted files. */
"outDir": "./dist",
/* Emit a declaration file (.d.ts) from a TypeScript or JavaScript file. */
"declaration": true,
/* Enable pretty output. */
"pretty": true,
/* Use a specific end of line sequence. */
"newLine": "lf",
/* Specify what JSX output is generated */
"jsx": "react-jsx",
/* Ensure that each file can be safely transpiled without relying on other imports. */
"isolatedModules": true,
/* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
"esModuleInterop": true,
/* Ensure that casing is correct in imports. */
"forceConsistentCasingInFileNames": true,
/* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"allowSyntheticDefaultImports": true,
/* Enable all strict type-checking options. */
"strict": true,
/* Skip type checking all .d.ts files. */
"skipLibCheck": true
}
}