forked from Lomray-Software/vite-ssr-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
67 lines (67 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": true,
"isolatedModules": true,
"lib": [
"es6",
"es2015",
"es2017",
"es2019",
"es2021",
"dom",
"webworker"
],
"module": "ES2022",
"moduleResolution": "Node",
"target": "ESNext",
"noImplicitAny": true,
"noImplicitReturns": true,
"declaration": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"sourceMap": true,
"strictNullChecks": true,
"strict": false,
"pretty": true,
"useDefineForClassFields": true,
"jsx": "react",
"baseUrl": ".",
"paths": {
"@__helpers__/*": ["./__helpers__/*"],
"@__mocks__/*": ["./__mocks__/*"],
"@browser/*": ["./src/browser/*"],
"@cli/*": ["./src/cli/*"],
"@components/*": ["./src/components/*"],
"@constants/*": ["./src/constants/*"],
"@context/*": ["./src/context/*"],
"@helpers/*": ["./src/helpers/*"],
"@interfaces/*": ["./src/interfaces/*"],
"@node/*": ["./src/node/*"],
"@plugins/*": ["./src/plugins/*"],
"@services/*": ["./src/services/*"]
}
},
"include": [
"src",
"__tests__",
"__mocks__",
"__helpers__",
"types",
"vitest.config.ts",
"eslint.config.js"
],
"exclude": [
"node_modules",
"lib",
"commitlint.config.js",
"rollup.config.js"
]
}