Skip to content

Commit 4222f96

Browse files
committed
fix tsconfig and version
1 parent 5ec0fa5 commit 4222f96

File tree

3 files changed

+16
-35
lines changed

3 files changed

+16
-35
lines changed

package-lock.json

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-openglobus",
3-
"version": "1.0.7",
3+
"version": "1.0.9",
44
"description": "Template for Openglobus",
55
"main": "index.js",
66
"type": "module",
@@ -23,14 +23,14 @@
2323
},
2424
"repository": {
2525
"type": "git",
26-
"url": "git+https://github.com/pavletto/globe.git"
26+
"url": "git+https://github.com/openglobus/create-openglobus.git"
2727
},
2828
"author": "Pavel Sukhodolski",
2929
"license": "MIT",
3030
"bugs": {
31-
"url": "https://github.com/pavletto/globe/issues"
31+
"url": "https://github.com/openglobus/create-openglobus/issues"
3232
},
33-
"homepage": "https://github.com/pavletto/globe#readme",
33+
"homepage": "https://github.com/openglobus/create-openglobus#readme",
3434
"dependencies": {
3535
"ejs": "^3.1.9",
3636
"inquirer": "^9.2.12",

tsconfig.json

Lines changed: 10 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,17 @@
11
{
22
"compilerOptions": {
3-
"target": "ESNext",
4-
"lib": [
5-
"DOM",
6-
"DOM.Iterable",
7-
"ESNext"
8-
],
9-
"module": "ESNext",
10-
"skipLibCheck": true,
11-
/* Bundler mode */
12-
"moduleResolution": "bundler",
13-
"allowImportingTsExtensions": true,
14-
"resolveJsonModule": true,
15-
"isolatedModules": true,
16-
"noEmit": true,
17-
"jsx": "react-jsx",
18-
/* Linting */
3+
"target": "es6",
4+
"declaration": true,
5+
"sourceMap": true,
6+
"outDir": "dist",
7+
"rootDir": "src",
198
"strict": true,
20-
"noUnusedLocals": true,
21-
"noUnusedParameters": true,
22-
"noFallthroughCasesInSwitch": true
9+
"esModuleInterop": true,
10+
"module": "ESNext", /* Specify what module code is generated. */
11+
"moduleResolution": "node"
12+
2313
},
2414
"exclude": [
2515
"src/templates"
26-
],
27-
"include": [
28-
"src"
29-
],
30-
"references": [
31-
{
32-
"path": "./tsconfig.node.json"
33-
}
3416
]
35-
}
17+
}

0 commit comments

Comments
 (0)