Initial commit Changes to be committed: new file: .gitignore new file: .prettierrc new file: LICENSE new file: README.md new file: eslint.config.mjs new file: nest-cli.json new file: package.json new file: pnpm-lock.yaml new file: src/app.controller.spec.ts new file: src/app.controller.ts new file: src/app.module.ts new file: src/app.service.ts new file: src/main.ts new file: test/app.e2e-spec.ts new file: test/jest-e2e.json new file: tsconfig.build.json new file: tsconfig.json
26 lines
674 B
JSON
26 lines
674 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"resolvePackageJsonExports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2023",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
}
|
|
}
|