Created
April 29, 2024 23:16
-
-
Save fzn0x/417509920b9468753122db3f8b300239 to your computer and use it in GitHub Desktop.
TSConfig for the Fullstack Kong
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TSConfig for the Fullstack
Licensed by The Kong Dynasty