element-call-Github/tsconfig.json
Robin Townsend f0d7d8fac6 Enable strict mode checks with typescript-strict-plugin
No CI checks at this time, the only effect this will have is adding IDE errors.
2022-09-15 08:31:24 -04:00

22 lines
464 B
JSON

{
"compilerOptions": {
"target": "es2016",
"esModuleInterop": true,
"module": "es2020",
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"jsx": "preserve",
"lib": ["es2020", "dom", "dom.iterable"],
"strict": false,
"plugins": [
{
"name": "typescript-strict-plugin",
"paths": ["src"]
}
]
},
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
}