forked from onetimesecret/onetimesecret
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
47 lines (44 loc) · 920 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
43
44
45
46
47
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 22",
"_version": "22.0.0",
"compilerOptions": {
"target": "es2022",
"module": "nodenext",
"lib": [
"es2023",
"dom"
],
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"useDefineForClassFields": true,
"jsx": "preserve",
"allowJs": true,
"sourceMap": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"types": [
"@types/node",
"playwright",
"@playwright/test",
"./src/types"
]
},
"include": [
"src/content/*.md",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/router/**/*.ts",
"tests/unit/vue/**/*.spec.ts",
"tests/unit/vue/**/*.ts"
],
"exclude": ["node_modules"]
}