2026-04-28 16:59:30 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
2026-04-29 22:48:36 +00:00
|
|
|
"target": "ES2018",
|
2026-04-28 16:59:30 +00:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"outDir": "dist",
|
2026-04-29 01:17:32 +00:00
|
|
|
"rootDir": "src/ts",
|
2026-04-28 16:59:30 +00:00
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"lib": ["ES2019", "DOM"]
|
|
|
|
|
},
|
2026-04-29 04:39:13 +00:00
|
|
|
"include": ["src/ts/**/*.ts"],
|
|
|
|
|
"exclude": ["test/**/*"]
|
2026-04-28 16:59:30 +00:00
|
|
|
}
|