forked from Wireguard/Wireguard-tools.js
Matheus Sampaio Queiroga
a399f89350
I'm adding key generation to pure Javascript, port of `keygen-html`. I'm also migrating the mocha tests to the Node tests runner. I solved a typescript typing problem add gitea CI/CD Gitlab CI/CD and Github Actions update test
31 lines
617 B
JSON
31 lines
617 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"target": "ESNext",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"strict": false,
|
|
"noUnusedLocals": true,
|
|
"isolatedModules": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"lib": [
|
|
"ESNext"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"**/libs/**",
|
|
"**/docs/**",
|
|
"node_modules/",
|
|
"index.mjs"
|
|
],
|
|
"ts-node": {
|
|
"files": true,
|
|
"esm": true,
|
|
"transpileOnly": true
|
|
}
|
|
} |