20 lines
402 B
JSON
20 lines
402 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
]
|
|
}
|