1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
Description: Use custom tsconfig.json files
To make sure the files needed for tests are in place, split root level tsconfig file
into build and test. Also remove @eggjs/tsconfig dependency from all tsconfig files
and add equivalent compiler options instead without overwriting any existing option.
Author: Ananthu C V <weepingclown@disroot.org>
Origin: upstream -- https://github.com/node-modules/address
Last-Update: 2023-10-05
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,10 +1,31 @@
{
- "extends": "@eggjs/tsconfig",
+ "include": ["src/**/*"],
+ "compileOnSave": true,
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"target": "ES2022",
"module": "NodeNext",
- "moduleResolution": "NodeNext"
+ "outDir": "dist/",
+ "moduleResolution": "NodeNext",
+ "esModuleInterop": true,
+ "allowJs": false,
+ "pretty": true,
+ "noEmitOnError": false,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "allowUnreachableCode": false,
+ "allowUnusedLabels": false,
+ "strictPropertyInitialization": false,
+ "noFallthroughCasesInSwitch": true,
+ "skipLibCheck": true,
+ "skipDefaultLibCheck": true,
+ "inlineSourceMap": true,
+ "declaration": true,
+ "resolveJsonModule": true,
+ "experimentalDecorators": true,
+ "emitDecoratorMetadata": true,
+ "useUnknownInCatchVariables": true,
+ "incremental": false
}
}
--- a/test/fixtures/ts/tsconfig.json
+++ b/test/fixtures/ts/tsconfig.json
@@ -1,16 +1,35 @@
{
- "extends": "@eggjs/tsconfig",
+ "include": ["*.ts"],
+ "compileOnSave": true,
"compilerOptions": {
- "target": "es5",
"baseUrl": ".",
+ "strict": true,
+ "noImplicitAny": false,
+ "declaration": false,
+ "target": "es5",
+ "module": "commonjs",
"paths": {
"address": [
"../../.."
]
},
- "module": "commonjs",
- "strict": true,
- "noImplicitAny": false,
- "declaration": false
+ "esModuleInterop": true,
+ "allowJs": false,
+ "pretty": true,
+ "noEmitOnError": false,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "allowUnreachableCode": false,
+ "allowUnusedLabels": false,
+ "strictPropertyInitialization": false,
+ "noFallthroughCasesInSwitch": true,
+ "skipLibCheck": true,
+ "skipDefaultLibCheck": true,
+ "inlineSourceMap": true,
+ "resolveJsonModule": true,
+ "experimentalDecorators": true,
+ "emitDecoratorMetadata": true,
+ "useUnknownInCatchVariables": true,
+ "incremental": false
}
}
--- /dev/null
+++ b/test/tsconfig.json
@@ -0,0 +1,30 @@
+{
+ "include": ["*.ts"],
+ "compileOnSave": true,
+ "compilerOptions": {
+ "strict": true,
+ "noImplicitAny": true,
+ "target": "ES2022",
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "esModuleInterop": true,
+ "allowJs": false,
+ "pretty": true,
+ "noEmitOnError": false,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "allowUnreachableCode": false,
+ "allowUnusedLabels": false,
+ "strictPropertyInitialization": false,
+ "noFallthroughCasesInSwitch": true,
+ "skipLibCheck": true,
+ "skipDefaultLibCheck": true,
+ "inlineSourceMap": true,
+ "declaration": true,
+ "resolveJsonModule": true,
+ "experimentalDecorators": true,
+ "emitDecoratorMetadata": true,
+ "useUnknownInCatchVariables": true,
+ "incremental": false
+ }
+}
|