eslint-config-tidgi
Version:
Eslint config fot TidGi and its plugins, with many eslint plugins to perform auto-fix.
21 lines (20 loc) • 591 B
JSON
{
"extends": "@modern-js/tsconfig/base.json",
"compilerOptions": {
"ignoreDeprecations": "6.0",
"jsx": "react-jsx",
"baseUrl": "./",
"noEmit": true,
"module": "nodenext",
"moduleResolution": "nodenext",
"typeRoots": ["node_modules/@types", "node_modules/tw5-typed"],
"types": ["node"],
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"skipLibCheck": true,
"lib": ["DOM", "ESNext"]
},
"include": ["src", "*.json", "*.mjs", "*.js", "eslint.config.ts", "index.ts"]
}