diff --git a/tsconfig.json b/tsconfig.json index 051dced..a5205ca 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,17 +1,16 @@ { "compilerOptions": { "allowSyntheticDefaultImports": true, - "experimentalDecorators": true, + "declaration": true, "target": "ES6", "module": "commonjs", "outDir": "./dist/", - "sourceMap": true, - "declaration": true, - "removeComments": true, - "forceConsistentCasingInFileNames": true + "sourceMap": true }, + "include": [ + "src/**/*.ts" + ], "exclude": [ - "dist", "node_modules" ] }