Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
upsmf-examinations-module
Commits
5822e3fd
Commit
5822e3fd
authored
1 year ago
by
Arun Kumar
Browse files
Options
Download
Patches
Plain Diff
initial commit
parents
master
bulk-upload-csv
examCycle
examcycleValiation
further-features-generic-table
generic-table-creation-and-features
header
No related merge requests found
Changes
23
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tsconfig.app.json
+14
-0
tsconfig.app.json
tsconfig.json
+33
-0
tsconfig.json
tsconfig.spec.json
+14
-0
tsconfig.spec.json
with
61 additions
and
0 deletions
+61
-0
tsconfig.app.json
0 → 100644
+
14
−
0
View file @
5822e3fd
/*
To
learn
more
about
this
file
see:
https://angular.io/config/tsconfig.
*/
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"outDir"
:
"./out-tsc/app"
,
"types"
:
[]
},
"files"
:
[
"src/main.ts"
],
"include"
:
[
"src/**/*.d.ts"
]
}
This diff is collapsed.
Click to expand it.
tsconfig.json
0 → 100644
+
33
−
0
View file @
5822e3fd
/*
To
learn
more
about
this
file
see:
https://angular.io/config/tsconfig.
*/
{
"compileOnSave"
:
false
,
"compilerOptions"
:
{
"baseUrl"
:
"./"
,
"outDir"
:
"./dist/out-tsc"
,
"forceConsistentCasingInFileNames"
:
true
,
"strict"
:
true
,
"noImplicitOverride"
:
true
,
"noPropertyAccessFromIndexSignature"
:
true
,
"noImplicitReturns"
:
true
,
"noFallthroughCasesInSwitch"
:
true
,
"sourceMap"
:
true
,
"declaration"
:
false
,
"downlevelIteration"
:
true
,
"experimentalDecorators"
:
true
,
"moduleResolution"
:
"node"
,
"importHelpers"
:
true
,
"target"
:
"ES2022"
,
"module"
:
"ES2022"
,
"useDefineForClassFields"
:
false
,
"lib"
:
[
"ES2022"
,
"dom"
]
},
"angularCompilerOptions"
:
{
"enableI18nLegacyMessageIdFormat"
:
false
,
"strictInjectionParameters"
:
true
,
"strictInputAccessModifiers"
:
true
,
"strictTemplates"
:
true
}
}
This diff is collapsed.
Click to expand it.
tsconfig.spec.json
0 → 100644
+
14
−
0
View file @
5822e3fd
/*
To
learn
more
about
this
file
see:
https://angular.io/config/tsconfig.
*/
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"outDir"
:
"./out-tsc/spec"
,
"types"
:
[
"jasmine"
]
},
"include"
:
[
"src/**/*.spec.ts"
,
"src/**/*.d.ts"
]
}
This diff is collapsed.
Click to expand it.
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets