clavitor/clavis/clavis-cli/jsconfig.json

30 lines
569 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"lib": ["ES2020", "DOM"],
"allowJs": true,
"checkJs": false,
"noEmit": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"crypto/*": ["../clavis-crypto/*"]
}
},
"include": [
"src/**/*",
"../clavis-crypto/**/*.js"
],
"exclude": [
"vendor/**/*"
],
"typeAcquisition": {
"include": ["clavitor"]
}
}