2025-09-23 14:18:04 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"checkJs": false,
|
|
|
|
|
"noEmit": true,
|
2025-09-23 16:57:49 +02:00
|
|
|
"types": ["node"],
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
|
|
|
|
"ponder/virtual": ["./node_modules/ponder/src/types.d.ts"]
|
|
|
|
|
}
|
2025-09-23 14:18:04 +02:00
|
|
|
},
|
2025-09-23 16:57:49 +02:00
|
|
|
"include": ["src/**/*", "ponder.config.ts", "ponder.schema.ts", "ponder-env.d.ts"],
|
2025-09-23 14:18:04 +02:00
|
|
|
"exclude": ["node_modules", ".ponder"]
|
2025-09-23 16:57:49 +02:00
|
|
|
}
|