Skip to content

Commit

Permalink
fix tsconfig and version
Browse files Browse the repository at this point in the history
  • Loading branch information
pavletto committed Dec 1, 2023
1 parent 5ec0fa5 commit 4222f96
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 35 deletions.
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-openglobus",
"version": "1.0.7",
"version": "1.0.9",
"description": "Template for Openglobus",
"main": "index.js",
"type": "module",
Expand All @@ -23,14 +23,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavletto/globe.git"
"url": "git+https://github.com/openglobus/create-openglobus.git"
},
"author": "Pavel Sukhodolski",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavletto/globe/issues"
"url": "https://github.com/openglobus/create-openglobus/issues"
},
"homepage": "https://github.com/pavletto/globe#readme",
"homepage": "https://github.com/openglobus/create-openglobus#readme",
"dependencies": {
"ejs": "^3.1.9",
"inquirer": "^9.2.12",
Expand Down
38 changes: 10 additions & 28 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,17 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"target": "es6",
"declaration": true,
"sourceMap": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"esModuleInterop": true,
"module": "ESNext", /* Specify what module code is generated. */
"moduleResolution": "node"

},
"exclude": [
"src/templates"
],
"include": [
"src"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}
}

0 comments on commit 4222f96

Please sign in to comment.