diff --git a/client/README.md b/client/README.md deleted file mode 100644 index afb0f6a..0000000 --- a/client/README.md +++ /dev/null @@ -1,47 +0,0 @@ -# Web Client - -## Frontend stack - -Genesis components are standards-based Web Components, making them compatible with almost any modern web framework. -Our state-of-the-art design system and component set is built on top of -[Microsoft FAST](https://www.fast.design/docs/introduction/). - -# Development - -1. Install dependencies: - -```shell -npm run bootstrap -``` - -2. Start Web development server in watch mode: - -```shell -npm run dev -``` - -3. Build for production: - -```shell -npm run build -``` - -Preview production build: - -```shell -npm run serve -``` - -## Clean - -Remove distribution and node_modules directories: - -```shell -npm run clean -``` - -Baseline task combines `clean` and `bootstrap` tasks into a single command: - -```shell -npm run baseline -``` diff --git a/client/tsconfig.json b/client/tsconfig.json deleted file mode 100644 index c0b3b97..0000000 --- a/client/tsconfig.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "compilerOptions": { - "declarationDir": "./dist/dts", - "outDir": "./dist/esm", - "rootDir": "./src", - "allowJs": true, - "allowSyntheticDefaultImports": true, - "declaration": true, - "declarationMap": true, - "esModuleInterop": true, - "experimentalDecorators": true, - "importHelpers": true, - "lib": ["DOM", "ES2015", "ES2016", "ES2017"], - "module": "ESNext", - "moduleResolution": "node", - "noEmitOnError": true, - "noImplicitAny": false, - "preserveConstEnums": true, - "pretty": true, - "removeComments": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "sourceMap": true, - "strictNullChecks": false, - "target": "ES2015" - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] -}