File tree Expand file tree Collapse file tree 8 files changed +3356
-1465
lines changed
src/controllers/render-controller Expand file tree Collapse file tree 8 files changed +3356
-1465
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# compiled output
22/dist
33/node_modules
4+ /build
45
56# Logs
67logs
78* .log
89npm-debug.log *
10+ pnpm-debug.log *
911yarn-debug.log *
1012yarn-error.log *
1113lerna-debug.log *
@@ -31,4 +33,24 @@ lerna-debug.log*
3133! .vscode /settings.json
3234! .vscode /tasks.json
3335! .vscode /launch.json
34- ! .vscode /extensions.json
36+ ! .vscode /extensions.json
37+
38+ # dotenv environment variable files
39+ .env
40+ .env.development.local
41+ .env.test.local
42+ .env.production.local
43+ .env.local
44+
45+ # temp directory
46+ .temp
47+ .tmp
48+
49+ # Runtime data
50+ pids
51+ * .pid
52+ * .seed
53+ * .pid.lock
54+
55+ # Diagnostic reports (https://nodejs.org/api/report.html)
56+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
Original file line number Diff line number Diff line change 1+ // @ts -check
2+ import eslint from '@eslint/js' ;
3+ import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended' ;
4+ import globals from 'globals' ;
5+ import tseslint from 'typescript-eslint' ;
6+
7+ export default tseslint . config (
8+ {
9+ ignores : [ 'eslint.config.mjs' ] ,
10+ } ,
11+ eslint . configs . recommended ,
12+ ...tseslint . configs . recommendedTypeChecked ,
13+ eslintPluginPrettierRecommended ,
14+ {
15+ languageOptions : {
16+ globals : {
17+ ...globals . node ,
18+ ...globals . jest ,
19+ } ,
20+ ecmaVersion : 5 ,
21+ sourceType : 'module' ,
22+ parserOptions : {
23+ projectService : true ,
24+ tsconfigRootDir : import . meta. dirname ,
25+ } ,
26+ } ,
27+ } ,
28+ {
29+ rules : {
30+ '@typescript-eslint/no-explicit-any' : 'off' ,
31+ '@typescript-eslint/no-floating-promises' : 'warn' ,
32+ '@typescript-eslint/no-unsafe-argument' : 'warn'
33+ } ,
34+ } ,
35+ ) ;
Original file line number Diff line number Diff line change 1- {
2- "collection" : " @nestjs/schematics" ,
3- "sourceRoot" : " src" ,
4- "compilerOptions" : {
5- "assets" : [
6- " assets/**/*"
7- ]
8- }
9- }
1+ {
2+ "$schema" : " https://json.schemastore.org/nest-cli" ,
3+ "collection" : " @nestjs/schematics" ,
4+ "sourceRoot" : " src" ,
5+ "compilerOptions" : {
6+ "deleteOutDir" : true
7+ }
8+ }
You can’t perform that action at this time.
0 commit comments