* initial * initial * update tests * remove unused import * allow passing with no tests * vale fixes
24 lines
514 B
JSON
24 lines
514 B
JSON
{
|
|
"extends": ["tsconfig/base.json"],
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo-client",
|
|
"noEmit": false,
|
|
"lib": ["es2022"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"**/__tests__"
|
|
]
|
|
}
|