forked from ghoshRitesh12/aniwatch-api
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 718 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 718 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
{
"compilerOptions": {
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2023",
"verbatimModuleSyntax": true,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
//
"strict": true,
// "noUncheckedIndexedAccess": true,
//
"moduleResolution": "NodeNext",
"module": "NodeNext",
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./dist",
"rootDir": "./",
"sourceMap": true,
//
"declaration": true,
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"strictFunctionTypes": true,
"lib": ["ES2023"]
},
"include": ["./src", "./api"],
"exclude": ["node_modules"]
}