robaertschi.xyz/tsconfig.json
2025-02-13 15:20:52 +01:00

25 lines
593 B
JSON

{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES6",
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"module": "node16",
"moduleResolution": "node16",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"rootDir": ".",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
},
"include": [
"src/**/*"
]
}
}