Skip to content

Commit

Permalink
fix: solid configs
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker committed Dec 29, 2024
1 parent 8fc8317 commit 84fca22
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 20 deletions.
2 changes: 1 addition & 1 deletion packages/template-blank-solid-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nativescript/template-blank-solid-ts",
"main": "src/index.js",
"version": "8.8.4",
"version": "8.8.5",
"description": "Nativescript Starter with Solid",
"author": "NativeScript Team <[email protected]>",
"license": "Apache-2.0",
Expand Down
14 changes: 5 additions & 9 deletions packages/template-blank-solid-ts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,21 @@
"jsxImportSource": "@nativescript-dom/solidjs-types",
"baseUrl": ".",
"paths": {
"~/*": ["app/*"],
"@/*": ["app/*"]
"~/*": ["src/*"],
"@/*": ["src/*"]
},
"noEmit": true,
"allowJs": true,
"types": [
"node",
"@nativescript-dom/core-types",
"@nativescript-dom/solidjs-types"
],
"types": ["node", "@nativescript-dom/core-types", "@nativescript-dom/solidjs-types"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"sourceMap": true,
"noEmitHelpers": true,
"importHelpers": true,
"importHelpers": true
},
"include": ["app","references.d.ts"],
"include": ["src", "references.d.ts"],
"exclude": ["node_modules", "platforms"]
}
14 changes: 5 additions & 9 deletions packages/template-blank-solid/jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,21 @@
"jsxImportSource": "@nativescript-dom/solidjs-types",
"baseUrl": ".",
"paths": {
"~/*": ["app/*"],
"@/*": ["app/*"]
"~/*": ["src/*"],
"@/*": ["src/*"]
},
"noEmit": true,
"allowJs": true,
"types": [
"node",
"@nativescript-dom/core-types",
"@nativescript-dom/solidjs-types"
],
"types": ["node", "@nativescript-dom/core-types", "@nativescript-dom/solidjs-types"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"sourceMap": true,
"noEmitHelpers": true,
"importHelpers": true,
"importHelpers": true
},
"include": ["app","references.d.ts"],
"include": ["src", "references.d.ts"],
"exclude": ["node_modules", "platforms"]
}
2 changes: 1 addition & 1 deletion packages/template-blank-solid/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nativescript/template-blank-solid",
"main": "src/index.js",
"version": "8.8.4",
"version": "8.8.5",
"description": "Nativescript Starter with Solid",
"author": "NativeScript Team <[email protected]>",
"license": "Apache-2.0",
Expand Down

0 comments on commit 84fca22

Please sign in to comment.