diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/tsconfig.json b/tsconfig.json index 67c0712..6bf7cdb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,26 +1,20 @@ { "compilerOptions": { - "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], "allowJs": true, - "skipLibCheck": true, - "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "strict": true, + "esModuleInterop": true, "forceConsistentCasingInFileNames": true, - "noFallthroughCasesInSwitch": true, + "isolatedModules": true, + "jsx": "react-jsx", + "lib": ["dom", "dom.iterable", "esnext"], "module": "esnext", "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, "noEmit": true, - "jsx": "react-jsx" + "noFallthroughCasesInSwitch": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true, + "target": "esnext" }, - "include": [ - "src" -, "server/data", "server/songs.ts" ] + "include": ["src", "server/data", "server/songs.ts"] } |
