15 lines
344 B
JSON
15 lines
344 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
// types option has been previously configured
|
||
|
"types": [
|
||
|
// add node as an option
|
||
|
"node"
|
||
|
],
|
||
|
// typeroots option has been previously configured
|
||
|
"typeroots": [
|
||
|
// add path to @types
|
||
|
"../node_modules/@types"
|
||
|
]
|
||
|
}
|
||
|
}
|