-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
49 lines (49 loc) · 1.59 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
48
49
{
"compilerOptions": {
/* Set the JavaScript language version for emitted JavaScript and include
compatible library declarations. */
"target": "ESNext",
/* Specify what JSX code is generated. */
"jsx": "preserve",
/* Specify what module code is generated. */
"module": "ESNext",
/* Specify the root folder within your source files. */
"rootDir": "./src",
/* Specify how TypeScript looks up a file from a given module specifier. */
"moduleResolution": "node",
/* Specify the base directory to resolve non-relative module names. */
"baseUrl": "./src",
/* Generate .d.ts files from TypeScript and JavaScript files in your project. */
"declaration": false,
/* Create sourcemaps for d.ts files. */
"declarationMap": false,
/* Create source map files for emitted JavaScript files. */
"sourceMap": true,
/* Specify an output folder for all emitted files. */
"outDir": "./lib",
/* 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,
/* Enable all strict type-checking options. */
"strict": true,
/* Skip type checking all .d.ts files. */
"skipLibCheck": true,
"types": [
"cypress",
"node"
]
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"exclude": [
"cypress.config.ts",
"**/cypress",
"**/node_modules",
]
}