tsconfig.base.json
1 { 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "NodeNext", 5 "moduleResolution": "NodeNext", 6 "allowJs": true, 7 "checkJs": true, 8 "declaration": true, 9 "declarationMap": true, 10 "outDir": "./dist", 11 "strict": true, 12 "esModuleInterop": true, 13 "skipLibCheck": true, 14 "forceConsistentCasingInFileNames": true 15 }, 16 "include": ["src/**/*"] 17 }