311c329f87
Use ESNext/Bundler resolution so extension imports match Pi's jiti runtime. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
277 B
JSON
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"]
|
|
}
|