-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
40 lines (40 loc) · 1.25 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
{
"compilerOptions": {
"target": "es2022",
"jsx": "react-jsx",
"module": "es2022",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "./.local/vite/dist",
"rootDir": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"baseUrl": "./src",
"forceConsistentCasingInFileNames": true,
"strict": false,
"skipLibCheck": false /* Skip type checking all .d.ts files. */,
"lib": ["dom", "dom.iterable", "es2022"],
"allowJs": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"alwaysStrict": true,
"strictBindCallApply": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"strictFunctionTypes": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"noEmit": true,
"isolatedModules": true,
"incremental": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"typeRoots": ["./node_modules/@types", "./typings", "./node_modules"],
"types": ["vite/client", "node", "jest", "@testing-library/jest-dom"],
"preserveConstEnums": true
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules", ".local", "public", "static"]
}