Skip to content

Commit

Permalink
remove complainy comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mizzao committed Nov 9, 2019
1 parent 5467249 commit 8e288f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
8 changes: 4 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Package.onUse(function(api) {
api.use("ecmascript");
// Should be replaced with straight up built-in 'typescript' in Meteor 1.8.2
// adornis:typescript from [1.4, 1.8)
api.use("adornis:[email protected]");
// api.use("barbatus:[email protected]");
// api.use("adornis:[email protected]");
api.use("barbatus:[email protected]");

// Client-only deps
api.use(["session", "ui", "templating", "reactive-var"], "client");
Expand Down Expand Up @@ -148,8 +148,8 @@ Package.onTest(function(api) {
api.use("ecmascript");

// For compiling TS
// api.use("barbatus:typescript");
api.use("adornis:typescript");
api.use("barbatus:typescript");
// api.use("adornis:typescript");

api.use([
"accounts-base",
Expand Down
11 changes: 2 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,27 @@
{
"compilerOptions": {
/* Basic Options */
"target": "es2015",
"module": "esNext",
"lib": ["esnext", "dom"],
"allowJs": true,
"checkJs": false,
"jsx": "preserve",
"incremental": true,
"noEmit": true,

/* Strict Type-Checking Options */
"strict": false,
"noImplicitAny": false, // TODO flip to true when ready
"strictNullChecks": false, // TODO flip to true when ready
"noImplicitAny": false,
"strictNullChecks": false,

/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,

/* Module Resolution Options */
"baseUrl": ".",
"paths": {
/* Support absolute /imports/* with a leading '/' */
"/*": ["*"]
},
"moduleResolution": "node",
"resolveJsonModule": true,
"types": ["node"],
"typeRoots": ["types/", "node_modules/@types"]
}
Expand Down

0 comments on commit 8e288f4

Please sign in to comment.