UNPKG

394 BJSONView Raw
1{
2 "extends": "./tsconfig.json",
3 "compilerOptions": {
4 // Disable features needed by the IDE which harm type declaration generation
5 "isolatedModules": false,
6 "noEmit": false,
7
8 // Enable features needed for type declaration generation
9 "declaration": true,
10 "emitDeclarationOnly": true,
11 "declarationDir": "lib"
12 },
13
14 "include": ["types/*.d.ts", "src/tedious.ts"]
15}