forked from Codeinwp/neve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (31 loc) · 827 Bytes
/
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
{
"compilerOptions": {
/* Specify ECMAScript target version */
"target": "ES2018",
/* Specify module code generation */
"module": "esnext",
/* Specify library files to be included in the compilation. */
"lib": [
"ESNext",
"DOM",
"ES2018"
],
/* Specify JSX code generation */
"jsx": "react",
/* Enable all strict type-checking options */
"strict": true,
/* Specify module resolution strategy */
"moduleResolution": "node",
/* List of folders to include type definitions from */
"typeRoots": [
"./node_modules/@types",
"./node_modules/playwright-core",
],
/* allow import React instead of import * as React */
"allowSyntheticDefaultImports": true,
/* Emit interop between CommonJS and ES modules */
"esModuleInterop": true,
"resolveJsonModule": true,
},
"exclude": ["./node_modules"]
}