diff --git a/tsconfig.json b/tsconfig.json index ec8c7429..54fcaac2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,29 +1,27 @@ { - "compilerOptions": { - "baseUrl": "./src", - "target": "es6", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], - "paths": { - "~*": ["./*"] + "compilerOptions": { + "baseUrl": "./src", + "target": "es6", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "paths": { + "~*": ["./*"] + }, + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react" }, - "allowJs": true, - "skipLibCheck": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "module": "esnext", - "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "react" - }, - "include": [ - ["src/**/*"] - ] + "include": ["src/**/*"] }