@cpuchain/eslint
Version:
Common ESLint config for CPUchain projects
17 lines (16 loc) • 421 B
JSON
{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types",
],
"target": "ES2022",
"lib": ["ES2016", "ES2021", "ES2022", "ESNext"],
"module": "NodeNext",
"moduleResolution": "nodenext",
"rootDir": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}