11 lines
238 B
JSON
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"
|
||
|
}
|
||
|
}
|