diff --git a/package.json b/package.json index a52a02a..4da97df 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.0.9", + "version": "1.0.10", "type": "commonjs", "exports": { "./strapi-server": { diff --git a/server/tsconfig.build.json b/server/tsconfig.build.json index 98e5a85..83c4362 100644 --- a/server/tsconfig.build.json +++ b/server/tsconfig.build.json @@ -6,7 +6,6 @@ "rootDir": "../", "baseUrl": ".", "outDir": "./dist", - "target": "ES6", - "module": "commonjs" + "incremental": false } } diff --git a/server/tsconfig.json b/server/tsconfig.json index 138f80a..dd319cf 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -1,12 +1,11 @@ { "extends": "@strapi/typescript-utils/tsconfigs/server", - "include": ["./", "src/**/*.json"], + "include": ["./"], "compilerOptions": { "rootDir": "../", "baseUrl": ".", "target": "es6", "module": "commonjs", - "lib": ["es6", "es2015", "dom"], - "allowJs": true //enables the build without .ts files + "lib": ["es6", "es2015", "dom"] } }