21 lines
461 B
JSON
21 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"erasableSyntaxOnly": true,
|
|
"verbatimModuleSyntax": true,
|
|
"types": ["node"],
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
},
|
|
"include": [
|
|
"*.mts",
|
|
"*.mjs"
|
|
]
|
|
}
|