1{ 2 "extends": "./tsconfig.json", 3 "compilerOptions": { 4 "allowJs": false, // Necessary to make "declaration": true work 5 "declaration": true, // We want .d.ts files 6 "declarationMap": true, // We want .d.ts files for source maps for editor integration 7 "rootDir": ".", 8 "outDir": "lib", 9 "baseUrl": "." 10 } 11} 12