2026-05-21 14:38:52 -07:00
|
|
|
{
|
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
|
"target": "ES2022",
|
2026-05-21 17:16:56 -07:00
|
|
|
"lib": ["ES2022", "DOM"],
|
2026-05-21 14:38:52 -07:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"noEmit": false
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "scripts/**/*.ts"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
|
|
|
|
|
}
|