23 lines
671 B
JSON
23 lines
671 B
JSON
{
|
|
"include": ["env.d.ts", "**/*.ts", "**/*.tsx", ".react-router/types/**/*"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"removeComments": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2022",
|
|
"baseUrl": ".",
|
|
"types": ["@react-router/node", "vite/client", "@shopify/polaris-types"],
|
|
"rootDirs": [".", "./.react-router/types"]
|
|
}
|
|
}
|