web3.news/tsconfig.json

37 lines
847 B
JSON
Raw Normal View History

2023-11-10 13:34:04 +00:00
{
2023-12-18 03:18:17 +00:00
"include": [
2023-12-22 20:35:40 +00:00
"env.d.ts",
2023-12-18 03:18:17 +00:00
"**/*.ts",
"**/*.tsx"
],
"compilerOptions": {
"lib": [
2023-12-18 03:18:17 +00:00
"DOM",
"DOM.Iterable",
"ES2022"
],
2023-12-18 03:18:17 +00:00
"isolatedModules": true,
"esModuleInterop": true,
2023-12-18 03:18:17 +00:00
"jsx": "react-jsx",
"resolveJsonModule": true,
2023-12-22 20:35:40 +00:00
"module": "ESNext",
"moduleResolution": "Bundler",
2023-12-18 03:18:17 +00:00
"target": "ES2022",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@/*": [
2023-12-18 03:18:17 +00:00
"./app/*"
],
"~/*": [
"./app/*"
]
2023-12-18 03:18:17 +00:00
},
// Remix takes care of building everything in `remix build`.
2023-12-27 15:18:07 +00:00
"noEmit": true,
"types": ["unplugin-fonts/client"]
2023-12-18 03:18:17 +00:00
}
2023-11-10 13:34:04 +00:00
}