Files
porthole/tsconfig.base.json
OpenCode Test e1a64aa092 Initial commit
2025-12-24 10:50:10 -08:00

21 lines
480 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "preserve",
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@tline/*": ["packages/*/src/index.ts"]
}
}
}