mirror of https://codeberg.org/pzp/pzp-sdk.git
26 lines
465 B
JSON
26 lines
465 B
JSON
{
|
|
"include": [
|
|
"declarations",
|
|
"lib/**/*.js",
|
|
"test/"
|
|
],
|
|
"exclude": [
|
|
"coverage/",
|
|
"node_modules/",
|
|
],
|
|
"compilerOptions": {
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [
|
|
"es2022",
|
|
"dom"
|
|
],
|
|
"module": "node16",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es2021"
|
|
}
|
|
} |