-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
32 lines (29 loc) · 958 Bytes
/
tsconfig.node.json
File metadata and controls
32 lines (29 loc) · 958 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
{
"include": ["*.ts"],
"exclude": ["src/routeTree.gen.ts"],
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ESNext",
"lib": ["ESNext"],
// "moduleDetection": "force",
"skipLibCheck": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
"emitDeclarationOnly": true,
"noEmit": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"isolatedDeclarations": false,
"erasableSyntaxOnly": true, // No JSX, enums, constructor parameter properties, namespaces
"verbatimModuleSyntax": true, // Enforce keyword `type` for type imports etc. implies "isolatedModules"
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": false,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"strict": true
}
}