-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 903 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"module": "ES2022",
"target": "ES2022",
"sourceMap": true,
"outDir": "./dist/",
"lib": ["ES2022", "es2017", "es7", "es6", "DOM"],
"baseUrl": ".",
"resolveJsonModule": true,
"moduleResolution": "node",
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitThis": true,
"declaration": false,
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["src/**/types", "node_modules/@types"]
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"include": ["src/**/*", "333.ts", "444.ts"],
"exclude": ["node_modules/*", "dist/*", "scripts/*", "examples/*"]
}