forked from onetimesecret/onetimesecret
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
37 lines (34 loc) · 914 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 22",
"_version": "22.0.0",
"compilerOptions": {
"target": "es2022",
"module": "nodenext",
"lib": [
"es2023",
"dom"
],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "nodenext",
"useDefineForClassFields": true,
"jsx": "preserve",
"allowJs": true,
"sourceMap": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
// The `@` alias. For this to work seamlessly in TypeScript,
// ensure that both the Vue project configuration and TypeScript
// configuration are correctly set up to recognize this alias.
"@/*": ["src/*"]
},
"types": [
"@types/node"
]
},
"include": ["src/**/*.ts", "src/types/**/*.d.ts", "src/**/*.tsx", "src/**/*.mjs", "src/**/*.vue"],
"exclude": ["node_modules"]
}