-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.node.json
51 lines (51 loc) · 1.09 KB
/
tsconfig.node.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
{
"compilerOptions": {
"lib": [
"dom",
"es6",
"es7",
"es2022.error"
],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitAny": false,
"skipLibCheck": true,
"removeComments": true,
"jsx": "preserve",
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "ES2022",
"resolveJsonModule": true,
"esModuleInterop": true,
"isolatedModules": true,
"declaration": true,
"outDir": "dist",
"rootDir": "./src",
"downlevelIteration": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": [
"./src/app",
"./src/components",
"./src/hooks",
"./dist",
"./client",
"./ios",
"./android",
"./electron",
"./vscode",
"./tailwind.config.ts",
"./capacitor.config.ts",
"./next.config.ts",
"./postcss.config.mjs"
],
"include": [
"src/**/*",
"src/@types/**/*.d.ts"
]
}