mirror of
https://github.com/diced/zipline.git
synced 2026-01-07 10:50:41 -08:00
22 lines
503 B
JSON
22 lines
503 B
JSON
{
|
|
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2019"],
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"target": "esnext",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/app/*"]
|
|
},
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true
|
|
}
|
|
}
|