2023-03-04 11:22:27 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-03-05 19:51:51 +00:00
|
|
|
"alwaysStrict": true,
|
2023-03-04 17:54:03 +00:00
|
|
|
"moduleResolution": "node",
|
2023-03-05 19:51:51 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"strictNullChecks": true,
|
2023-03-04 17:54:03 +00:00
|
|
|
"target": "es2022"
|
2023-03-04 11:22:27 +00:00
|
|
|
},
|
2023-03-05 19:51:51 +00:00
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"esbuildconf.js",
|
|
|
|
"node_modules",
|
|
|
|
"**/*.test.ts"
|
|
|
|
]
|
2023-03-04 17:54:03 +00:00
|
|
|
}
|