Browse Source

feat(api): migrate tsconfig module to preserve

pull/7665/head
KenTandrian 1 week ago
parent
commit
f1bc9f4f40
  1. 4
      apps/api/tsconfig.app.json
  2. 3
      apps/api/tsconfig.spec.json

4
apps/api/tsconfig.app.json

@ -4,10 +4,8 @@
"outDir": "../../dist/out-tsc",
"types": ["node"],
"emitDecoratorMetadata": true,
"ignoreDeprecations": "6.0",
"moduleResolution": "node10",
"target": "es2021",
"module": "commonjs"
"module": "preserve"
},
"exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"],
"include": ["**/*.ts"]

3
apps/api/tsconfig.spec.json

@ -2,8 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"module": "commonjs",
"moduleResolution": "node10",
"module": "preserve",
"types": ["jest", "node"]
},
"include": ["**/*.spec.ts", "**/*.test.ts", "**/*.d.ts", "jest.config.ts"]

Loading…
Cancel
Save