- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
46 lines
1001 B
JSON
46 lines
1001 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictFunctionTypes": false,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictBindCallApply": true,
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"target": "ES2018",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "types",
|
|
"skipLibCheck": true,
|
|
"stripInternal": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"emitDeclarationOnly": true,
|
|
"paths": {
|
|
"cborg": [
|
|
"cborg.js"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"cborg.js",
|
|
"example.js",
|
|
"taglib.js",
|
|
"lib/"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"compileOnSave": false
|
|
}
|