Skip to content

Commit 85b71dc

Browse files
author
Kohei Asai
authored
Use typescript-deno-plugin (axross#136)
1 parent 813fdea commit 85b71dc

File tree

4 files changed

+214
-1
lines changed

4 files changed

+214
-1
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.vscode/*
1+
.vscode/*
2+
node_modules/*

package-lock.json

+187
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"devDependencies": {
3+
"typescript": "^3.6.3",
4+
"typescript-deno-plugin": "^1.2.7"
5+
}
6+
}

tsconfig.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"lib": ["esnext"],
4+
"downlevelIteration": true /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */,
5+
"strict": true,
6+
"noImplicitAny": true,
7+
"strictNullChecks": true,
8+
"strictFunctionTypes": true,
9+
"strictBindCallApply": true,
10+
"strictPropertyInitialization": true,
11+
"noImplicitThis": true,
12+
"alwaysStrict": true,
13+
"noUnusedLocals": true,
14+
"noUnusedParameters": true,
15+
"noImplicitReturns": true,
16+
"noFallthroughCasesInSwitch": true,
17+
"plugins": [{ "name": "typescript-deno-plugin" }]
18+
}
19+
}

0 commit comments

Comments
 (0)