2026-03-31 12:17:46 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"lib": ["ES2020"],
|
2026-03-31 13:55:11 +08:00
|
|
|
"moduleResolution": "bundler",
|
2026-03-31 13:02:29 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"strict": true,
|
2026-03-31 12:17:46 +08:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
2026-04-02 17:34:11 +08:00
|
|
|
"rootDir": "./src",
|
|
|
|
|
"types": ["node"]
|
2026-03-31 12:17:46 +08:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
2026-04-02 17:34:11 +08:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2026-03-31 12:17:46 +08:00
|
|
|
}
|