2025-01-13 01:48:42 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es2022",
|
|
|
|
|
"module": "es2022",
|
|
|
|
|
"lib": [
|
|
|
|
|
"es2022",
|
|
|
|
|
"dom"
|
|
|
|
|
],
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"rootDir": "./",
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true,
|
2025-08-30 22:51:41 +02:00
|
|
|
"composite": true,
|
|
|
|
|
"isolatedModules": true,
|
2025-01-13 01:48:42 -05:00
|
|
|
},
|
|
|
|
|
"include": [
|
2025-08-30 22:51:41 +02:00
|
|
|
"src/*.ts",
|
|
|
|
|
"script/*",
|
|
|
|
|
"test/*",
|
|
|
|
|
"lib/*.ts"
|
2025-01-13 01:48:42 -05:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
]
|
|
|
|
|
}
|