/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "es2022", 4 "module": "esnext", 5 "lib": ["es2020", "dom"], 6 7 "strict": true, 8 "esModuleInterop": true, 9 "skipLibCheck": true, 10 "forceConsistentCasingInFileNames": true, 11 "moduleResolution": "node", 12 13 "baseUrl": "src", 14 "outDir": "./src/nfid-embed/dist" 15 } 16 }