@synet/identity
Version:
Simple and secure identity management library for Verifiable Identity
19 lines • 529 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext", // Changed from "commonjs"
"moduleResolution": "NodeNext", // Added this line
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"preserveSymlinks": true,
"declaration": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test", "**/*.test.ts"]
}