-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 622 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 622 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
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"lib": ["ESNext", "DOM"],
"moduleResolution": "NodeNext",
"strict": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"declaration": true,
"declarationDir": "dist/types",
"emitDeclarationOnly": true,
"outDir": "dist",
"rootDir": "src",
"noImplicitAny": false,
"allowJs": true,
"checkJs": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "tests"],
}