2025-03-04 07:49:03 +00:00
|
|
|
{
|
2025-10-05 08:28:00 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
|
// Enable to check TS7 compatibility.
|
|
|
|
|
"stableTypeOrdering": false,
|
|
|
|
|
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"paths": {
|
|
|
|
|
"*": ["./src/*"],
|
|
|
|
|
"#/*": ["./src/*"]
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
|
|
|
|
|
"target": "ES2024",
|
|
|
|
|
"lib": [
|
|
|
|
|
"DOM",
|
|
|
|
|
"ES2024"
|
|
|
|
|
],
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
|
"erasableSyntaxOnly": false,
|
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
|
|
|
|
|
|
// For ESLint to handle:
|
|
|
|
|
"allowUnreachableCode": true,
|
|
|
|
|
"allowUnusedLabels": true,
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"./src/**/*.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"./node_modules",
|
|
|
|
|
"./dist",
|
|
|
|
|
"./build",
|
|
|
|
|
"./main.js",
|
|
|
|
|
"./eslint.config.js"
|
|
|
|
|
]
|
2025-03-04 07:49:03 +00:00
|
|
|
}
|