1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
"compilerOptions": {
"target": "ES2019",
"moduleResolution": "Node",
"rootDir": "src",
"outDir": "dist",
"declaration": true,
"esModuleInterop": true,
"allowJs": true,
"alwaysStrict": true,
"strictFunctionTypes": true,
"noImplicitAny": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"stripInternal": true,
"baseUrl": "."
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}
|