tack-up-now/tsconfig.json

53 lines
1.4 KiB
JSON

// {
// "include": [
// "**/*.ts",
// "**/*.tsx",
// "**/.server/**/*.ts",
// "**/.server/**/*.tsx",
// "**/.client/**/*.ts",
// "**/.client/**/*.tsx"
// ],
// "exclude": ["node_modules"],
// "compilerOptions": {
// "lib": ["DOM", "DOM.Iterable", "ES2022"],
// "types": ["@remix-run/jsdom", "@remix-run/node", "@remix-run/test", "vite/client", "jest", "node"],
// "isolatedModules": true,
// "esModuleInterop": true,
// "jsx": "react-jsx",
// "moduleResolution": "Bundler",
// "resolveJsonModule": true,
// "target": "ES2022",
// "module": "ES2022",
// "strict": true,
// "allowJs": true,
// "skipLibCheck": true,
// "forceConsistentCasingInFileNames": true,
// "baseUrl": ".",
// "paths": {
// "~/*": ["./app/*"]
// },
// // Vite takes care of building everything, not tsc.
// "noEmit": true
// }
// }
{
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["dist", "__tests__", "node_modules"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"target": "ES2022",
"module": "ES2022",
"skipLibCheck": true,
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"strict": true,
"jsx": "react",
"declaration": true,
"emitDeclarationOnly": true,
"rootDir": ".",
"outDir": "../../build/node_modules/@remix-run/testing/dist"
}
}