2023-11-11 11:16:27 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-09-09 16:07:03 +00:00
|
|
|
"rootDirs": [
|
|
|
|
|
"./src"
|
|
|
|
|
],
|
2023-11-11 11:16:27 +00:00
|
|
|
"target": "es2022",
|
2025-01-21 18:55:15 +00:00
|
|
|
"module": "NodeNext",
|
2023-11-11 11:16:27 +00:00
|
|
|
"lib": [
|
|
|
|
|
"ES2022"
|
|
|
|
|
],
|
2024-03-05 18:13:26 +00:00
|
|
|
"declaration": true,
|
2024-04-03 19:08:31 +00:00
|
|
|
"declarationMap": true,
|
2025-01-21 18:55:15 +00:00
|
|
|
"moduleResolution": "nodenext",
|
2023-11-11 11:16:27 +00:00
|
|
|
"rootDir": ".",
|
2025-08-27 20:48:46 +00:00
|
|
|
"outDir": "dist",
|
2023-11-11 11:16:27 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"alwaysStrict": true,
|
2024-09-09 16:07:03 +00:00
|
|
|
"sourceMap": true,
|
2023-11-11 11:16:27 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"noImplicitThis": false,
|
2024-09-09 16:07:03 +00:00
|
|
|
"strictNullChecks": true,
|
2023-11-11 11:16:27 +00:00
|
|
|
},
|
|
|
|
|
"include": [
|
2024-03-08 01:45:43 +00:00
|
|
|
"./src/**/*.ts",
|
2023-11-11 11:16:27 +00:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
2024-03-05 18:13:26 +00:00
|
|
|
"./**/*.test.ts",
|
2025-08-27 20:48:46 +00:00
|
|
|
"./dist/**"
|
2023-11-11 11:16:27 +00:00
|
|
|
]
|
|
|
|
|
}
|