ring/platforms/opencode/plugin/tsconfig.json

22 lines
505 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022"],
"types": ["bun-types", "node"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": ".",
"noEmit": true
},
"include": ["./**/*"],
"exclude": ["node_modules", "dist"]
}