X6/tsconfig.json
Ko.Rei 7656b38735 fix: cannot be invoked without new (#3296)
fix Class constructor xx cannot be invoked without 'new'
2023-02-27 11:35:37 +08:00

21 lines
491 B
JSON

{
"exclude": ["node_modules", "**/es", "**/lib"],
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"jsx": "react",
"target": "es6",
"lib": ["DOM", "ES2020"]
}
}