18 lines
442 B
JSON
18 lines
442 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": false,
|
|
"verbatimModuleSyntax": true,
|
|
"rootDir": "."
|
|
},
|
|
"include": ["src/signing_keys.ts", "tests/**/*.ts"]
|
|
}
|