/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "es2018", 4 "module": "commonjs", 5 "outDir": "./lib", 6 "rootDir": "./src", 7 "strict": true, 8 "skipLibCheck": true, 9 "esModuleInterop": true 10 }, 11 "include": [ 12 "src/**/*" 13 ], 14 "exclude": [ 15 "node_modules" 16 ] 17 }