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 | "baseUrl": "../../src",
|
18 | "paths": {
|
19 | "@/*": ["./*"]
|
20 | }
|
21 | },
|
22 | "include": ["../../src", "./types/global.d.ts"],
|
23 | "exclude": ["node_modules"]
|
24 | }
|