create-farm-plugin
Version:
use create-farm-plugin to create farm plugin
23 lines (22 loc) • 542 B
JSON
{
"exclude": ["node_modules"],
"include": ["src/**/*"],
"compilerOptions": {
"noUnusedParameters": false,
"noUnusedLocals": false,
"outDir": "dist",
"rootDir": "src",
"lib": ["DOM", "ESNext"],
"noImplicitAny": true,
"sourceMap": true,
"target": "es2020",
"module": "node16",
"moduleResolution": "node16",
"declaration": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"resolveJsonModule": true
}
}