diff options
Diffstat (limited to 'packages/funbox/tsconfig.json')
-rw-r--r-- | packages/funbox/tsconfig.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/funbox/tsconfig.json b/packages/funbox/tsconfig.json new file mode 100644 index 000000000..de674c340 --- /dev/null +++ b/packages/funbox/tsconfig.json @@ -0,0 +1,15 @@ +{ + "extends": "@monkeytype/typescript-config/base.json", + "compilerOptions": { + "outDir": "./dist", + "rootDir": "./src", + "declaration": true, + "declarationMap": true, + "moduleResolution": "Bundler", + "module": "ES6", + "target": "ES2015", + "lib": ["es2016"] + }, + "include": ["src"], + "exclude": ["node_modules", "dist"] +} |