diff --git a/tsconfig.json b/tsconfig.json index 0f2d6cf..3ad3181 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,24 +2,24 @@ "compilerOptions": { "baseUrl": "./", "paths": { - "@/*": ["src/*"], + "@/*": ["src/*"] }, - "typeRoots": ["./src/types", "./node_modules/@types"], + "typeRoots": ["./types", "./node_modules/@types"], "lib": ["ESNext", "DOM"], "target": "ESNext", "module": "ESNext", "moduleDetection": "force", - "allowJs": true, + "allowJs": false, "moduleResolution": "bundler", - "allowImportingTsExtensions": true, + "allowImportingTsExtensions": false, "verbatimModuleSyntax": true, "noEmit": true, "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, - "noUnusedLocals": false, + "noUnusedLocals": true, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false }, - "include": ["src", "types", "config"] + "include": ["src", "types"] }