refactor: move to remix.run

This commit is contained in:
Andrea
2022-05-14 00:27:02 +02:00
parent 7596166533
commit 0f67414fb5
39 changed files with 26002 additions and 854 deletions

20
tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2019"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"resolveJsonModule": true,
"target": "ES2019",
"strict": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true
}
}