1{ 2 "compileOnSave": false, 3 "compilerOptions": { 4 "outDir": "./dist/", 5 "sourceMap": true, 6 "noImplicitAny": false, 7 "esModuleInterop": true, 8 "declaration": true, 9 "declarationDir": "./dist/types/", 10 "declarationMap": true, 11 "moduleResolution": "node", 12 "module": "commonjs", 13 "target": "ES2015", 14 "skipLibCheck": true, 15 "allowSyntheticDefaultImports": true, 16 "baseUrl": "./", 17 "types": [ 18 "node" 19 ], 20 "rootDir": "./", 21 "allowJs": true 22 }, 23 "include": [ 24 "src/**/*.ts", 25 "tests/**/*.ts" 26 ], 27 "exclude": [ 28 "node_modules", 29 "*.test.ts" 30 ] 31}