-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 616 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 616 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"exclude": ["./coverage", "./dist", "__tests__", "jest.config.js"],
"compilerOptions": {
"target": "esnext",
"module": "NodeNext",
"moduleResolution": "nodenext",
"experimentalDecorators": true,
"allowJs": true,
"checkJs": false,
"outDir": "dist",
"strict": false,
"strictNullChecks": true,
"skipLibCheck": true,
"noImplicitThis": true,
"esModuleInterop": true,
"declaration": true,
"resolveJsonModule": true,
"lib": ["es2020", "esnext.array", "DOM", "ES2021.String"],
"isolatedModules": true
},
"include": ["src/**/*.ts", "src/**/*.json"]
}