remix-demo

react router (remix) demo

git clone https://9o.is/git/remix-demo.git

tsconfig.json

(661B)


      1 {
      2   "exclude": [
      3     "../node_modules/@types/jest",
      4     "../node_modules/@testing-library/jest-dom"
      5   ],
      6   "include": [
      7     "e2e/**/*",
      8     "support/**/*",
      9     "../node_modules/cypress",
     10     "../node_modules/@testing-library/cypress"
     11   ],
     12   "compilerOptions": {
     13     "baseUrl": ".",
     14     "noEmit": true,
     15     "types": ["node", "cypress", "@testing-library/cypress"],
     16     "esModuleInterop": true,
     17     "jsx": "react-jsx",
     18     "moduleResolution": "node",
     19     "target": "es2019",
     20     "strict": true,
     21     "skipLibCheck": true,
     22     "resolveJsonModule": true,
     23     "typeRoots": ["../types", "../node_modules/@types"],
     24 
     25     "paths": {
     26       "~/*": ["../app/*"]
     27     }
     28   }
     29 }