diff options
Diffstat (limited to 'examples/kitchen-sink/apps/blog/tsconfig.json')
| -rw-r--r-- | examples/kitchen-sink/apps/blog/tsconfig.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/kitchen-sink/apps/blog/tsconfig.json b/examples/kitchen-sink/apps/blog/tsconfig.json new file mode 100644 index 0000000..791822c --- /dev/null +++ b/examples/kitchen-sink/apps/blog/tsconfig.json @@ -0,0 +1,20 @@ +{ + "include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"], + "compilerOptions": { + "lib": ["dom", "dom.iterable", "ES2019"], + "esModuleInterop": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "resolveJsonModule": true, + "target": "ES2019", + "strict": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "baseUrl": ".", + "paths": { + "~/*": ["./app/*"] + }, + "noEmit": true, + "isolatedModules": true + } +} |
