29 строки
687 B
JSON
29 строки
687 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2018"
|
|
],
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"target": "es2018",
|
|
"noEmit": true,
|
|
// "declaration": true,
|
|
// "emitDeclarationOnly": true,
|
|
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowJs": true,
|
|
"checkJs": true
|
|
},
|
|
|
|
"include": [
|
|
"**/*.mjs", "**/*.cjs"
|
|
]
|
|
}
|