|
12345678910111213141516171819 |
- {
- "root": true,
- "rules": {
- "@typescript-eslint/no-unsafe-assignment": "off",
- "@typescript-eslint/no-unsafe-member-access": "off",
- "@typescript-eslint/no-unsafe-call": "off",
- "@typescript-eslint/no-unsafe-return": "off"
- },
- "extends": [
- "lxsmnsyc/typescript"
- ],
- "ignorePatterns": [
- "dist",
- "node_modules"
- ],
- "parserOptions": {
- "project": "./tsconfig.eslint.json"
- }
- }
|