rizaldy.club/tsconfig.json

21 lines
558 B
JSON
Raw Normal View History

2023-05-29 07:44:08 +07:00
{
"compilerOptions": {
2023-07-23 07:27:41 +07:00
"lib": ["esnext", "DOM", "DOM.Iterable"],
"experimentalDecorators": true,
2023-05-29 07:44:08 +07:00
"module": "esnext",
"target": "esnext",
2024-01-28 13:19:37 +07:00
"moduleResolution": "node",
2023-05-29 07:44:08 +07:00
"strict": true,
"incremental": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
2023-07-23 07:27:41 +07:00
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
"exclude": ["build/**/*.d.ts"]
2023-05-29 07:44:08 +07:00
}