diff --git a/src/Umbraco.Web.UI.Client/apps/auth/tsconfig.json b/src/Umbraco.Web.UI.Client/apps/auth/tsconfig.json new file mode 100644 index 0000000000..7743919df7 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/apps/auth/tsconfig.json @@ -0,0 +1,12 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "./types" + }, + "include": ["src/**/*.ts"], + "references": [ + { + "path": "./tsconfig.node.json" + } + ] +} diff --git a/src/Umbraco.Web.UI.Client/apps/auth/tsconfig.node.json b/src/Umbraco.Web.UI.Client/apps/auth/tsconfig.node.json new file mode 100644 index 0000000000..b8b8971494 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/apps/auth/tsconfig.node.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "composite": true, + "module": "esnext", + "moduleResolution": "node", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +}