-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.lts.json
More file actions
57 lines (57 loc) · 1.2 KB
/
Copy pathtsconfig.lts.json
File metadata and controls
57 lines (57 loc) · 1.2 KB
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
52
53
54
55
56
57
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": false,
"allowUnreachableCode": false,
"declaration": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": [
"ES2023"
],
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "NodeNext",
"noEmit": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"outDir": "./dist",
"removeComments": true,
"resolveJsonModule": true,
"rewriteRelativeImportExtensions": true,
"rootDir": "./",
"skipLibCheck": true,
"sourceMap": true,
"strictFunctionTypes": true,
"target": "ES2023",
"types": [
"node"
],
"useDefineForClassFields": true
},
"exclude": [
"biome.json",
"dist",
"handbook",
"jsr.json",
"node_modules",
"package-lock.json",
"package.json",
"scripts",
"temp",
"tests/template.test.ts",
"tsconfig.json",
"tsconfig.lts.json"
],
"include": [
"**/*.json",
"**/*.ts"
]
}