Builtin conversejs: using typescript.

This commit is contained in:
John Livingston
2021-05-03 18:30:02 +02:00
parent 5575628e99
commit a74954a0cb
4 changed files with 80 additions and 22 deletions

25
conversejs/tsconfig.json Normal file
View File

@ -0,0 +1,25 @@
{
"compilerOptions": {
"module": "es6",
"target": "es5",
"allowJs": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"alwaysStrict": true, // should already be true because of strict:true
"noImplicitAny": true, // should already be true because of strict:true
"noImplicitThis": true, // should already be true because of strict:true
"noImplicitReturns": true,
"strictBindCallApply": true, // should already be true because of strict:true
"noUnusedLocals": true,
"outDir": "../dist/client",
"paths": {
"shared/*": ["../shared/*"]
}
},
"include": [
"./**/*",
"../shared/**/*"
],
"exclude": []
}