Skip to content

Instantly share code, notes, and snippets.

@fzn0x
Created April 29, 2024 23:16
Show Gist options
  • Save fzn0x/417509920b9468753122db3f8b300239 to your computer and use it in GitHub Desktop.
Save fzn0x/417509920b9468753122db3f8b300239 to your computer and use it in GitHub Desktop.
TSConfig for the Fullstack Kong
{
"include": [
"**/*.ts",
"**/*.tsx",
"**/.server/**/*.ts",
"**/.server/**/*.tsx",
"**/.client/**/*.ts",
"**/.client/**/*.tsx"
],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": ["@remix-run/node", "vite/client"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"noImplicitAny": true,
"strictNullChecks": false,
"target": "ES2022",
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},
// Vite takes care of building everything, not tsc.
"noEmit": true
}
}
@fzn0x
Copy link
Author

fzn0x commented Apr 29, 2024

TSConfig for the Fullstack

Timeless_Vol_1_1_Textless <-- Do Not Click The Link!!

Licensed by The Kong Dynasty

@fzn0x
Copy link
Author

fzn0x commented Apr 29, 2024

Timeless_Vol_1_1_Textless

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment