-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
34 lines (29 loc) 路 829 Bytes
/
Copy pathtsconfig.node.json
File metadata and controls
34 lines (29 loc) 路 829 Bytes
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
/* Environment */
"target": "es2025",
"types": [ "node" ],
"allowJs": false,
/* Module Resolution */
"module": "preserve",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": false,
"erasableSyntaxOnly": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
/* Emit */
"noEmit": true,
"skipLibCheck": true,
/* Strict Type Checking */
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
},
"include": [ "./next.config.ts", "./eslint.config.ts" ]
}