1 | {
|
2 | "compilerOptions": {
|
3 | "allowSyntheticDefaultImports": true,
|
4 | "allowUnreachableCode": false,
|
5 | "declaration": false,
|
6 | "experimentalDecorators": true,
|
7 | "noUnusedLocals": true,
|
8 | "noUnusedParameters": true,
|
9 | "lib": ["dom", "ES2019"],
|
10 | "moduleResolution": "Node",
|
11 | "module": "ESNext",
|
12 | "target": "ES2020",
|
13 | "jsx": "react",
|
14 | "jsxFactory": "h",
|
15 | "jsxFragmentFactory": "Fragment",
|
16 | "skipLibCheck": true
|
17 | },
|
18 | "include": ["../../src", "./assets/types/index.d.ts"],
|
19 | "exclude": ["node_modules"]
|
20 | }
|