mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 21:33:02 -05:00
feat(challenge23): create table for testing table challenge
This commit is contained in:
3
libs/testing-table/model/README.md
Normal file
3
libs/testing-table/model/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# testing-table-model
|
||||
|
||||
This library was generated with [Nx](https://nx.dev).
|
||||
9
libs/testing-table/model/project.json
Normal file
9
libs/testing-table/model/project.json
Normal 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": {}
|
||||
}
|
||||
0
libs/testing-table/model/src/index.ts
Normal file
0
libs/testing-table/model/src/index.ts
Normal file
26
libs/testing-table/model/tsconfig.json
Normal file
26
libs/testing-table/model/tsconfig.json
Normal 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
|
||||
}
|
||||
}
|
||||
12
libs/testing-table/model/tsconfig.lib.json
Normal file
12
libs/testing-table/model/tsconfig.lib.json
Normal 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user