mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-16 17:10:12 +00:00
27 lines
677 B
JSON
27 lines
677 B
JSON
{
|
|
"exclude": ["./cypress", "./cypress.config.ts"],
|
|
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2019"],
|
|
"types": ["vitest/globals"],
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2019",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"]
|
|
},
|
|
"skipLibCheck": true,
|
|
|
|
// Remix takes care of building everything in `remix build`.
|
|
"noEmit": true
|
|
}
|
|
}
|