php/blog/tsconfig.json
CloudyyUw 2f6c0c56e2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
using quartz for the blog + new post about this setup
2024-07-24 23:41:44 -03:00

20 lines
558 B
JSON

{
"compilerOptions": {
"lib": ["esnext", "DOM", "DOM.Iterable"],
"experimentalDecorators": true,
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"strict": true,
"incremental": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
"exclude": ["build/**/*.d.ts"]
}