This repository has been archived on 2022-09-16. You can view files and clone it, but cannot push or open issues/pull-requests.
tlaternet-templates/tsconfig.json

17 lines
329 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"strictNullChecks": true,
2022-07-30 17:55:13 +01:00
"strictPropertyInitialization": true,
"esModuleInterop": true,
2022-08-01 21:14:18 +01:00
"jsx": "react",
2022-08-03 01:48:06 +01:00
"isolatedModules": true,
2022-08-06 18:04:38 +01:00
"target": "es2015",
"moduleResolution": "node",
2022-08-03 01:48:06 +01:00
"plugins": [
{
"name": "typescript-eslint-language-service"
}
]
}
}