diff options
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json new file mode 100644 index 0000000..756d3fc --- /dev/null +++ b/client/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "es6", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + "noFallthroughCasesInSwitch": true + }, + "include": [ + "src" + ] +} |