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