diff --git a/.eslintrc.json b/.eslintrc.json index 26b6933..122076d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,6 +12,7 @@ "plugins": ["prettier"], "parserOptions": { "ecmaVersion": "latest", + "project": "./tsconfig.json", "sourceType": "module" }, "rules": { diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..a7acaa3 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "watch": false, + "lib": ["esnext", "dom"], + "removeComments": true, + "target": "es2021", + "module": "esnext", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true + }, + "$schema": "https://json.schemastore.org/tsconfig", + "display": "Recommended" +} \ No newline at end of file