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