2025-11-11 05:54:20 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-02-10 04:15:33 +00:00
|
|
|
"target": "es2018",
|
2025-11-11 05:54:20 +00:00
|
|
|
"module": "nodenext",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "./lib",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"lib": ["ESNext"]
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"],
|
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|