Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 720bdaa52f | |||
| 28b1911c63 | |||
| 9748f266df | |||
| c26501a8b8 | |||
| 197d7826d6 | |||
| 03e3f9b966 | |||
| edefb30ea3 | |||
| 64ee3b2e69 | |||
| bea9fd98fb | |||
| 7cbc861707 | |||
| 2f5d555455 | |||
| e4326cad11 | |||
| 8bb0f0f85a |
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
|
npm-debug.log*
|
||||||
|
.env
|
||||||
|
.DS_Store
|
||||||
30
Dockerfile
Normal file
30
Dockerfile
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# ---- Build stage ----
|
||||||
|
FROM node:20-alpine AS build
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY package.json ./
|
||||||
|
RUN npm install
|
||||||
|
|
||||||
|
COPY tsconfig.json ./
|
||||||
|
COPY src/ ./src/
|
||||||
|
RUN npm run build && npm prune --omit=dev
|
||||||
|
|
||||||
|
# ---- Runtime stage ----
|
||||||
|
FROM node:20-alpine
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
|
||||||
|
|
||||||
|
COPY --from=build /app/dist ./dist
|
||||||
|
COPY --from=build /app/node_modules ./node_modules
|
||||||
|
COPY package.json ./
|
||||||
|
|
||||||
|
RUN chown -R appuser:appgroup /app
|
||||||
|
USER appuser
|
||||||
|
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=20s --retries=3 \
|
||||||
|
CMD wget -qO- http://localhost:3000/health | grep -q 'UP' || exit 1
|
||||||
|
|
||||||
|
CMD ["node", "--require", "./dist/tracing.js", "dist/main"]
|
||||||
53
k6/configmap.yaml
Normal file
53
k6/configmap.yaml
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: k6-test-sonar-test-nest2
|
||||||
|
namespace: dev
|
||||||
|
labels:
|
||||||
|
app: sonar-test-nest2
|
||||||
|
app.kubernetes.io/managed-by: backstage
|
||||||
|
app.kubernetes.io/component: load-testing
|
||||||
|
data:
|
||||||
|
K6_OUT: opentelemetry
|
||||||
|
K6_OTEL_GRPC_EXPORTER_INSECURE: 'true'
|
||||||
|
K6_OTEL_GRPC_EXPORTER_ENDPOINT: otel-collector.monitoring.svc.cluster.local:4317
|
||||||
|
K6_OTEL_METRIC_PREFIX: k6_
|
||||||
|
K6_OTEL_FLUSH_INTERVAL: '1000'
|
||||||
|
K6_OTEL_EXPORT_INTERVAL: '5000'
|
||||||
|
K6_OTEL_SERVICE_NAME: k6-sonar-test-nest2
|
||||||
|
load-test.js: "import http from 'k6/http';\nimport { check, sleep, group } from\
|
||||||
|
\ 'k6';\n\nconst vus = parseInt(__ENV.TEST_VUS || '10');\nconst duration = __ENV.TEST_DURATION\
|
||||||
|
\ || '30s';\nconst targetUrl = __ENV.TARGET_URL || 'http://sonar-test-nest2.dev.svc.cluster.local:3000';\n\
|
||||||
|
\nexport const options = {\n scenarios: {\n load_test: {\n executor:\
|
||||||
|
\ 'ramping-vus',\n startVUs: 0,\n stages: [\n { duration: '10s',\
|
||||||
|
\ target: vus },\n { duration: duration, target: vus },\n { duration:\
|
||||||
|
\ '5s', target: 0 },\n ],\n },\n },\n thresholds: {\n http_req_duration:\
|
||||||
|
\ ['p(95)<500'],\n http_req_failed: ['rate<0.01'],\n },\n};\n\nhttp.setResponseCallback(http.expectedStatuses({\
|
||||||
|
\ min: 200, max: 399 }));\n\nexport default function () {\n group('Health API',\
|
||||||
|
\ () => {\n const res = http.get(`${targetUrl}/health`);\n check(res, {\n\
|
||||||
|
\ 'status is 200': (r) => r.status === 200,\n 'response time < 500ms':\
|
||||||
|
\ (r) => r.timings.duration < 500,\n });\n });\n\n sleep(0.5);\n\n group('Items\
|
||||||
|
\ API', () => {\n const resGetAll = http.get(`${targetUrl}/api/items`);\n \
|
||||||
|
\ check(resGetAll, {\n 'status is 200': (r) => r.status === 200,\n \
|
||||||
|
\ 'response time < 500ms': (r) => r.timings.duration < 500,\n 'response\
|
||||||
|
\ contains items': (r) => Array.isArray(JSON.parse(r.body)),\n });\n\n const\
|
||||||
|
\ resCreate = http.post(\n `${targetUrl}/api/items`,\n JSON.stringify({\
|
||||||
|
\ name: 'Test Item', description: 'A test description' }),\n { headers: {\
|
||||||
|
\ 'Content-Type': 'application/json' } }\n );\n check(resCreate, {\n \
|
||||||
|
\ 'status is 201': (r) => r.status === 201,\n 'response time < 500ms':\
|
||||||
|
\ (r) => r.timings.duration < 500,\n 'response contains id': (r) => JSON.parse(r.body).id\
|
||||||
|
\ !== undefined,\n });\n\n const itemId = JSON.parse(resCreate.body).id;\n\
|
||||||
|
\n const resGetOne = http.get(`${targetUrl}/api/items/${itemId}`);\n check(resGetOne,\
|
||||||
|
\ {\n 'status is 200': (r) => r.status === 200,\n 'response time < 500ms':\
|
||||||
|
\ (r) => r.timings.duration < 500,\n 'response contains correct item': (r)\
|
||||||
|
\ => JSON.parse(r.body).id === itemId,\n });\n\n const resUpdate = http.put(\n\
|
||||||
|
\ `${targetUrl}/api/items/${itemId}`,\n JSON.stringify({ name: 'Updated\
|
||||||
|
\ Item', description: 'Updated description' }),\n { headers: { 'Content-Type':\
|
||||||
|
\ 'application/json' } }\n );\n check(resUpdate, {\n 'status is 200':\
|
||||||
|
\ (r) => r.status === 200,\n 'response time < 500ms': (r) => r.timings.duration\
|
||||||
|
\ < 500,\n 'response contains updated name': (r) => JSON.parse(r.body).name\
|
||||||
|
\ === 'Updated Item',\n });\n\n const resDelete = http.del(`${targetUrl}/api/items/${itemId}`);\n\
|
||||||
|
\ check(resDelete, {\n 'status is 200': (r) => r.status === 200,\n \
|
||||||
|
\ 'response time < 500ms': (r) => r.timings.duration < 500,\n 'response\
|
||||||
|
\ confirms deletion': (r) => JSON.parse(r.body).deleted === itemId,\n });\n\
|
||||||
|
\ });\n\n sleep(0.5);\n}"
|
||||||
87
k6/load-test.js
Normal file
87
k6/load-test.js
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
import http from 'k6/http';
|
||||||
|
import { check, sleep, group } from 'k6';
|
||||||
|
|
||||||
|
const vus = parseInt(__ENV.TEST_VUS || '10');
|
||||||
|
const duration = __ENV.TEST_DURATION || '30s';
|
||||||
|
const targetUrl = __ENV.TARGET_URL || 'http://sonar-test-nest2.dev.svc.cluster.local:3000';
|
||||||
|
|
||||||
|
export const options = {
|
||||||
|
scenarios: {
|
||||||
|
load_test: {
|
||||||
|
executor: 'ramping-vus',
|
||||||
|
startVUs: 0,
|
||||||
|
stages: [
|
||||||
|
{ duration: '10s', target: vus },
|
||||||
|
{ duration: duration, target: vus },
|
||||||
|
{ duration: '5s', target: 0 },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
thresholds: {
|
||||||
|
http_req_duration: ['p(95)<500'],
|
||||||
|
http_req_failed: ['rate<0.01'],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
http.setResponseCallback(http.expectedStatuses({ min: 200, max: 399 }));
|
||||||
|
|
||||||
|
export default function () {
|
||||||
|
group('Health API', () => {
|
||||||
|
const res = http.get(`${targetUrl}/health`);
|
||||||
|
check(res, {
|
||||||
|
'status is 200': (r) => r.status === 200,
|
||||||
|
'response time < 500ms': (r) => r.timings.duration < 500,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
sleep(0.5);
|
||||||
|
|
||||||
|
group('Items API', () => {
|
||||||
|
const resGetAll = http.get(`${targetUrl}/api/items`);
|
||||||
|
check(resGetAll, {
|
||||||
|
'status is 200': (r) => r.status === 200,
|
||||||
|
'response time < 500ms': (r) => r.timings.duration < 500,
|
||||||
|
'response contains items': (r) => Array.isArray(JSON.parse(r.body)),
|
||||||
|
});
|
||||||
|
|
||||||
|
const resCreate = http.post(
|
||||||
|
`${targetUrl}/api/items`,
|
||||||
|
JSON.stringify({ name: 'Test Item', description: 'A test description' }),
|
||||||
|
{ headers: { 'Content-Type': 'application/json' } }
|
||||||
|
);
|
||||||
|
check(resCreate, {
|
||||||
|
'status is 201': (r) => r.status === 201,
|
||||||
|
'response time < 500ms': (r) => r.timings.duration < 500,
|
||||||
|
'response contains id': (r) => JSON.parse(r.body).id !== undefined,
|
||||||
|
});
|
||||||
|
|
||||||
|
const itemId = JSON.parse(resCreate.body).id;
|
||||||
|
|
||||||
|
const resGetOne = http.get(`${targetUrl}/api/items/${itemId}`);
|
||||||
|
check(resGetOne, {
|
||||||
|
'status is 200': (r) => r.status === 200,
|
||||||
|
'response time < 500ms': (r) => r.timings.duration < 500,
|
||||||
|
'response contains correct item': (r) => JSON.parse(r.body).id === itemId,
|
||||||
|
});
|
||||||
|
|
||||||
|
const resUpdate = http.put(
|
||||||
|
`${targetUrl}/api/items/${itemId}`,
|
||||||
|
JSON.stringify({ name: 'Updated Item', description: 'Updated description' }),
|
||||||
|
{ headers: { 'Content-Type': 'application/json' } }
|
||||||
|
);
|
||||||
|
check(resUpdate, {
|
||||||
|
'status is 200': (r) => r.status === 200,
|
||||||
|
'response time < 500ms': (r) => r.timings.duration < 500,
|
||||||
|
'response contains updated name': (r) => JSON.parse(r.body).name === 'Updated Item',
|
||||||
|
});
|
||||||
|
|
||||||
|
const resDelete = http.del(`${targetUrl}/api/items/${itemId}`);
|
||||||
|
check(resDelete, {
|
||||||
|
'status is 200': (r) => r.status === 200,
|
||||||
|
'response time < 500ms': (r) => r.timings.duration < 500,
|
||||||
|
'response confirms deletion': (r) => JSON.parse(r.body).deleted === itemId,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
sleep(0.5);
|
||||||
|
}
|
||||||
24
k6/testrun.yaml
Normal file
24
k6/testrun.yaml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
apiVersion: k6.io/v1alpha1
|
||||||
|
kind: TestRun
|
||||||
|
metadata:
|
||||||
|
name: k6-sonar-test-nest2
|
||||||
|
namespace: dev
|
||||||
|
labels:
|
||||||
|
app: sonar-test-nest2
|
||||||
|
backstage.io/component: sonar-test-nest2
|
||||||
|
app.kubernetes.io/managed-by: backstage
|
||||||
|
app.kubernetes.io/component: load-testing
|
||||||
|
spec:
|
||||||
|
parallelism: 1
|
||||||
|
script:
|
||||||
|
configMap:
|
||||||
|
name: k6-test-sonar-test-nest2
|
||||||
|
file: load-test.js
|
||||||
|
runner:
|
||||||
|
image: grafana/k6:latest
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: k6-test-sonar-test-nest2
|
||||||
|
env:
|
||||||
|
- name: K6_OTEL_SERVICE_NAME
|
||||||
|
value: k6-sonar-test-nest2
|
||||||
44
package.json
Normal file
44
package.json
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"name": "sonar-test-nest2",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "sonar-test-nest2",
|
||||||
|
"scripts": {
|
||||||
|
"build": "nest build",
|
||||||
|
"start": "node dist/main",
|
||||||
|
"start:dev": "nest start --watch",
|
||||||
|
"test": "jest",
|
||||||
|
"test:cov": "jest --coverage"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@nestjs/common": "^10.3.8",
|
||||||
|
"@nestjs/core": "^10.3.8",
|
||||||
|
"@nestjs/platform-express": "^10.3.8",
|
||||||
|
"@nestjs/terminus": "^10.2.3",
|
||||||
|
"@willsoto/nestjs-prometheus": "^6.0.1",
|
||||||
|
"prom-client": "^15.1.3",
|
||||||
|
"reflect-metadata": "^0.2.2",
|
||||||
|
"rxjs": "^7.8.1",
|
||||||
|
"@opentelemetry/sdk-node": "^0.52.0",
|
||||||
|
"@opentelemetry/auto-instrumentations-node": "^0.47.0",
|
||||||
|
"@opentelemetry/exporter-trace-otlp-http": "^0.52.0",
|
||||||
|
"@opentelemetry/exporter-metrics-otlp-http": "^0.52.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@nestjs/cli": "^10.3.2",
|
||||||
|
"@nestjs/testing": "^10.3.8",
|
||||||
|
"@types/jest": "^29.5.12",
|
||||||
|
"@types/node": "^20.12.11",
|
||||||
|
"jest": "^29.7.0",
|
||||||
|
"ts-jest": "^29.1.3",
|
||||||
|
"typescript": "^5.4.5"
|
||||||
|
},
|
||||||
|
"jest": {
|
||||||
|
"moduleFileExtensions": ["js","json","ts"],
|
||||||
|
"rootDir": "src",
|
||||||
|
"testRegex": ".*\\.spec\\.ts$",
|
||||||
|
"transform": { "^.+\\.(t|j)s$": "ts-jest" },
|
||||||
|
"testEnvironment": "node",
|
||||||
|
"coverageDirectory": "coverage",
|
||||||
|
"coverageReporters": ["lcov", "text-summary"]
|
||||||
|
}
|
||||||
|
}
|
||||||
15
src/app.module.ts
Normal file
15
src/app.module.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import { Module } from '@nestjs/common';
|
||||||
|
import { TerminusModule } from '@nestjs/terminus';
|
||||||
|
import { PrometheusModule } from '@willsoto/nestjs-prometheus';
|
||||||
|
import { ItemsModule } from './items/items.module';
|
||||||
|
import { HealthController } from './health.controller';
|
||||||
|
|
||||||
|
@Module({
|
||||||
|
imports: [
|
||||||
|
TerminusModule,
|
||||||
|
PrometheusModule.register({ path: '/metrics' }),
|
||||||
|
ItemsModule,
|
||||||
|
],
|
||||||
|
controllers: [HealthController],
|
||||||
|
})
|
||||||
|
export class AppModule {}
|
||||||
13
src/health.controller.ts
Normal file
13
src/health.controller.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import { Controller, Get } from '@nestjs/common';
|
||||||
|
import { HealthCheck, HealthCheckService } from '@nestjs/terminus';
|
||||||
|
|
||||||
|
@Controller('health')
|
||||||
|
export class HealthController {
|
||||||
|
constructor(private health: HealthCheckService) {}
|
||||||
|
|
||||||
|
@Get()
|
||||||
|
@HealthCheck()
|
||||||
|
check() {
|
||||||
|
return this.health.check([]);
|
||||||
|
}
|
||||||
|
}
|
||||||
48
src/items/items.controller.ts
Normal file
48
src/items/items.controller.ts
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
import {
|
||||||
|
Body,
|
||||||
|
Controller,
|
||||||
|
Delete,
|
||||||
|
Get,
|
||||||
|
HttpCode,
|
||||||
|
Param,
|
||||||
|
ParseIntPipe,
|
||||||
|
Post,
|
||||||
|
Put,
|
||||||
|
} from '@nestjs/common';
|
||||||
|
import { ItemsService } from './items.service';
|
||||||
|
|
||||||
|
class CreateItemDto {
|
||||||
|
name: string;
|
||||||
|
description?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Controller('api/items')
|
||||||
|
export class ItemsController {
|
||||||
|
constructor(private readonly items: ItemsService) {}
|
||||||
|
|
||||||
|
@Get()
|
||||||
|
findAll() {
|
||||||
|
return this.items.findAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post()
|
||||||
|
@HttpCode(201)
|
||||||
|
create(@Body() dto: CreateItemDto) {
|
||||||
|
return this.items.create(dto.name, dto.description);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Get(':id')
|
||||||
|
findOne(@Param('id', ParseIntPipe) id: number) {
|
||||||
|
return this.items.findOne(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Put(':id')
|
||||||
|
update(@Param('id', ParseIntPipe) id: number, @Body() dto: CreateItemDto) {
|
||||||
|
return this.items.update(id, dto.name, dto.description);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Delete(':id')
|
||||||
|
remove(@Param('id', ParseIntPipe) id: number) {
|
||||||
|
return this.items.remove(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
9
src/items/items.module.ts
Normal file
9
src/items/items.module.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { Module } from '@nestjs/common';
|
||||||
|
import { ItemsController } from './items.controller';
|
||||||
|
import { ItemsService } from './items.service';
|
||||||
|
|
||||||
|
@Module({
|
||||||
|
controllers: [ItemsController],
|
||||||
|
providers: [ItemsService],
|
||||||
|
})
|
||||||
|
export class ItemsModule {}
|
||||||
19
src/items/items.service.spec.ts
Normal file
19
src/items/items.service.spec.ts
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import { Test, TestingModule } from '@nestjs/testing';
|
||||||
|
import { ItemsService } from './items.service';
|
||||||
|
|
||||||
|
describe('ItemsService', () => {
|
||||||
|
let service: ItemsService;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
const module: TestingModule = await Test.createTestingModule({
|
||||||
|
providers: [ItemsService],
|
||||||
|
}).compile();
|
||||||
|
service = module.get<ItemsService>(ItemsService);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('creates and retrieves an item', () => {
|
||||||
|
const item = service.create('Widget', 'A test widget');
|
||||||
|
expect(item.id).toBe(1);
|
||||||
|
expect(service.findOne(1).name).toBe('Widget');
|
||||||
|
});
|
||||||
|
});
|
||||||
45
src/items/items.service.ts
Normal file
45
src/items/items.service.ts
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
import { Injectable, NotFoundException } from '@nestjs/common';
|
||||||
|
|
||||||
|
export interface Item {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class ItemsService {
|
||||||
|
private readonly store = new Map<number, Item>();
|
||||||
|
private counter = 1;
|
||||||
|
|
||||||
|
findAll(): Item[] {
|
||||||
|
return [...this.store.values()];
|
||||||
|
}
|
||||||
|
|
||||||
|
create(name: string, description = ''): Item {
|
||||||
|
const item: Item = { id: this.counter++, name, description };
|
||||||
|
this.store.set(item.id, item);
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
|
findOne(id: number): Item {
|
||||||
|
const item = this.store.get(id);
|
||||||
|
if (!item) throw new NotFoundException(`Item ${id} not found`);
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
|
update(id: number, name?: string, description?: string): Item {
|
||||||
|
const item = this.findOne(id);
|
||||||
|
const updated: Item = {
|
||||||
|
id,
|
||||||
|
name: name ?? item.name,
|
||||||
|
description: description ?? item.description,
|
||||||
|
};
|
||||||
|
this.store.set(id, updated);
|
||||||
|
return updated;
|
||||||
|
}
|
||||||
|
|
||||||
|
remove(id: number): { deleted: number } {
|
||||||
|
this.store.delete(id);
|
||||||
|
return { deleted: id };
|
||||||
|
}
|
||||||
|
}
|
||||||
9
src/main.ts
Normal file
9
src/main.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { NestFactory } from '@nestjs/core';
|
||||||
|
import { AppModule } from './app.module';
|
||||||
|
|
||||||
|
async function bootstrap() {
|
||||||
|
const app = await NestFactory.create(AppModule);
|
||||||
|
await app.listen(process.env.PORT ?? 3000);
|
||||||
|
console.log(`sonar-test-nest2 listening on :${process.env.PORT ?? 3000}`);
|
||||||
|
}
|
||||||
|
bootstrap();
|
||||||
19
src/tracing.ts
Normal file
19
src/tracing.ts
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
// OTel SDK bootstrap — loaded via --require ./dist/tracing.js before the app.
|
||||||
|
// Auto-configures from OTEL_* env vars set in score.yaml / Humanitec.
|
||||||
|
// No-ops gracefully when OTEL_EXPORTER_OTLP_ENDPOINT is absent (local dev).
|
||||||
|
import { NodeSDK } from '@opentelemetry/sdk-node';
|
||||||
|
import { getNodeAutoInstrumentations } from '@opentelemetry/auto-instrumentations-node';
|
||||||
|
|
||||||
|
const endpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
|
||||||
|
if (endpoint) {
|
||||||
|
const sdk = new NodeSDK({
|
||||||
|
instrumentations: [
|
||||||
|
getNodeAutoInstrumentations({
|
||||||
|
'@opentelemetry/instrumentation-fs': { enabled: false },
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
});
|
||||||
|
|
||||||
|
sdk.start();
|
||||||
|
process.on('SIGTERM', () => sdk.shutdown().finally(() => process.exit(0)));
|
||||||
|
}
|
||||||
17
tsconfig.json
Normal file
17
tsconfig.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"module": "commonjs",
|
||||||
|
"declaration": true,
|
||||||
|
"removeComments": true,
|
||||||
|
"emitDecoratorMetadata": true,
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"allowSyntheticDefaultImports": true,
|
||||||
|
"target": "ES2021",
|
||||||
|
"sourceMap": true,
|
||||||
|
"outDir": "./dist",
|
||||||
|
"baseUrl": "./",
|
||||||
|
"incremental": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"strictNullChecks": false
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user