-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
42 lines (42 loc) · 989 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
32
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"jsx": "react-jsx",
"importHelpers": true,
"isolatedModules": true,
"module": "ESNext",
"moduleResolution": "Node",
"typeRoots": ["./node_modules/@types"],
"noEmitHelpers": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"pretty": false,
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"skipLibCheck": false,
"esModuleInterop": true,
"outDir": "webroot/js",
"types": [
"vite/client",
"jest",
],
"baseUrl": ".",
"paths": {
"app/*": ["assets/js/*"],
"tests/*": ["tests/js/*"]
}
},
"include": [
"assets/js",
"assets/js/**/*.tsx",
"tests/js/**/*.ts",
"tests/js/**/*.tsx"
],
"exclude": ["./node_modules"]
}