Files
pi-auto-reinject/tsconfig.json
T
grayhook 311c329f87 Phase 0: add tsconfig.json — strict typecheck aligned with jiti ESM load.
Use ESNext/Bundler resolution so extension imports match Pi's jiti runtime.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-17 09:53:47 +07:00

14 lines
277 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"isolatedModules": true
},
"include": ["src/**/*.ts", "test/**/*.ts"]
}