@react-gnome/core
Version:
## Getting Started
22 lines (21 loc) • 367 B
JavaScript
// src/init-project/tsconfig-file.ts
function getTsConfig() {
return JSON.stringify(
{
compilerOptions: {
target: "ES6",
module: "ES2022",
moduleResolution: "node",
strict: true,
esModuleInterop: true,
skipLibCheck: true,
jsx: "react"
}
},
null,
2
);
}
export {
getTsConfig
};