-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
36 lines (35 loc) · 945 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"include": [
"remix.env.d.ts",
"**/*.ts",
"**/*.tsx",
"src",
"server.js",
"remix.init/server.js",
"__tests__/setup-test-env.js"
],
"exclude": ["./cypress/tsconfig.json", "./cypress/**/*.cy.ts"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2019"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"resolveJsonModule": true,
"target": "ES2019",
"skipLibCheck": true,
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},
"types": ["node", "cypress", "@testing-library/jest-dom", "vitest/globals"],
// Remix takes care of building everything in `remix build`.
"noEmit": true
},
"transformIgnorePatterns": [
"/node_modules/@remix-run/(?!web-blob|web-fetch|web-file|web-form-data|web-stream)"
]
}