types/tsconfig.json
saberzero1 7c893d558a
Consolidate all types into single index.ts with proper exports
Remove separate emitter, filter, transformer, and types source files.
All types are now exported directly from src/index.ts, enabling
plugins to import via normal ES module imports instead of relying
on ambient declaration files.
2026-02-13 13:18:01 +01:00

19 lines
426 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"lib": ["ES2022", "DOM"],
"moduleResolution": "NodeNext",
"rootDir": "./src",
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true
},
"include": ["src"],
"exclude": ["dist", "node_modules"]
}