LiveAtlas/tsconfig.json

11 lines
238 B
JSON
Raw Normal View History

2020-11-20 21:44:02 +00:00
// tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"jsx": "preserve",
"moduleResolution": "node"
}
}