2026-03-27 23:33:31 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "commonjs",
|
2026-03-27 23:53:08 -05:00
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
2026-03-27 23:33:31 -05:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|