18 lines
389 B
JSON
18 lines
389 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"types": ["node"],
|
|
"lib": ["esnext"],
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"erasableSyntaxOnly": true,
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|