diff --git a/enhavo/app-bundle/0.9/manifest.json b/enhavo/app-bundle/0.9/manifest.json index 22eb4ab2..6910c53a 100644 --- a/enhavo/app-bundle/0.9/manifest.json +++ b/enhavo/app-bundle/0.9/manifest.json @@ -14,7 +14,8 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/", "assets/": "assets/", - "public/": "%PUBLIC_DIR%/" + "public/": "%PUBLIC_DIR%/", + "tsconfig.json": "tsconfig.json" }, "gitignore": [ "public/build/enhavo/*", diff --git a/enhavo/app-bundle/0.9/post-install.txt b/enhavo/app-bundle/0.9/post-install.txt index 1064db6b..bc001e89 100644 --- a/enhavo/app-bundle/0.9/post-install.txt +++ b/enhavo/app-bundle/0.9/post-install.txt @@ -5,7 +5,6 @@ * Update your package.json file * Update your webpack.config.js file * Update your configurations - * Add a tsconfig.json file * Build your assets with $ yarn encore dev diff --git a/enhavo/app-bundle/0.9/tsconfig.json b/enhavo/app-bundle/0.9/tsconfig.json new file mode 100644 index 00000000..65764146 --- /dev/null +++ b/enhavo/app-bundle/0.9/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "lib": [ "es2015", "dom" ], + "module": "amd", + "target": "es5", + "allowJs": true, + "noImplicitAny": true, + "suppressImplicitAnyIndexErrors": true, + "moduleResolution": "node", + "sourceMap": true, + "experimentalDecorators": true + }, + "include": [ + "./assets/**/*" + ] +} \ No newline at end of file