2024-12-25 05:29:02 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2020",
|
|
|
|
"module": "commonjs",
|
|
|
|
"outDir": "./dist",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true
|
|
|
|
},
|
2024-12-27 12:00:54 +00:00
|
|
|
"include": ["src/**/*.ts", "src/types/**/*.d.ts"],
|
2024-12-25 05:29:02 +00:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|