tsconfig.base.json
1 { 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "NodeNext", 5 "moduleResolution": "NodeNext", 6 "lib": ["ES2022", "DOM"], 7 8 "declaration": true, 9 "declarationMap": true, 10 "sourceMap": true, 11 "removeComments": false, 12 13 "strict": true, 14 "noImplicitAny": true, 15 "strictNullChecks": true, 16 "noUnusedLocals": true, 17 "noUnusedParameters": true, 18 "noImplicitReturns": true, 19 "noFallthroughCasesInSwitch": true, 20 21 "esModuleInterop": true, 22 "forceConsistentCasingInFileNames": true, 23 "skipLibCheck": true 24 } 25 }