LiveAtlas/tsconfig.json
2020-11-20 21:44:31 +00:00

11 lines
238 B
JSON

// tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"jsx": "preserve",
"moduleResolution": "node"
}
}