feat(challenge23): create table for testing table challenge

This commit is contained in:
thomas
2023-05-27 21:48:32 +02:00
parent 0bbda2b3a4
commit b61028c744
24 changed files with 2118 additions and 2099 deletions

View File

@@ -0,0 +1,3 @@
# testing-table-model
This library was generated with [Nx](https://nx.dev).

View File

@@ -0,0 +1,9 @@
{
"name": "testing-table-model",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/testing-table/model/src",
"prefix": "angular-challenges",
"tags": [],
"projectType": "library",
"targets": {}
}

View File

View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "es2022",
"useDefineForClassFields": false,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.lib.json"
}
],
"extends": "../../../tsconfig.base.json",
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}

View File

@@ -0,0 +1,12 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../../dist/out-tsc",
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"types": []
},
"exclude": ["src/**/*.spec.ts", "jest.config.ts", "src/**/*.test.ts"],
"include": ["src/**/*.ts"]
}