-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50e7301
commit 76e0fa1
Showing
376 changed files
with
3,689 additions
and
16,881 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ npm-debug.log | |
*.sublime-project | ||
*.sublime-workspace | ||
*.docx | ||
*.tgz | ||
|
||
.idea/ | ||
.vscode/ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,19 @@ | ||
const base = require('@iot-app-kit/eslint-config'); | ||
|
||
module.exports = { | ||
...base, | ||
root: true, | ||
extends: ['iot-app-kit'], | ||
settings: { | ||
...base.settings, | ||
'import/resolver': { | ||
...base.settings['import/resolver'], | ||
typescript: { | ||
...base.settings['import/resolver'].typescript, | ||
project: ['apps/dev-env/tsconfig.json'], | ||
}, | ||
node: { | ||
project: ['apps/dev-env/tsconfig.json'], | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import react from '@vitejs/plugin-react'; | ||
import { defineConfig } from 'vite'; | ||
import react from '@vitejs/plugin-react'; | ||
|
||
// https://vitejs.dev/config/ | ||
export default defineConfig({ | ||
resolve: { | ||
conditions: ['@iot-app-kit/development'], | ||
}, | ||
plugins: [react()], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const base = require('@iot-app-kit/eslint-config'); | ||
|
||
module.exports = { | ||
...base, | ||
root: true, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
{ | ||
"name": "@iot-app-kit/ts-config", | ||
"type": "module", | ||
"version": "12.2.1", | ||
"private": true, | ||
"type": "module", | ||
"files": [ | ||
"tsconfig.base.json", | ||
"tsconfig.cjs.json", | ||
"tsconfig.esm.json" | ||
"tsconfig.base.json" | ||
], | ||
"scripts": { | ||
"clean:nuke": "rimraf node_modules" | ||
"clean:nuke": "npx rimraf node_modules" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^18.16.18", | ||
"rimraf": "^5.0.1", | ||
"typescript": "^5.5.4" | ||
}, | ||
"version": "12.2.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
const base = require('@iot-app-kit/eslint-config'); | ||
|
||
module.exports = { | ||
...base, | ||
root: true, | ||
settings: { | ||
...base.settings, | ||
'import/resolver': { | ||
...base.settings['import/resolver'], | ||
typescript: { | ||
...base.settings['import/resolver'].typescript, | ||
project: ['configuration/vite-config/tsconfig.json'], | ||
}, | ||
node: { | ||
project: ['configuration/vite-config/tsconfig.json'], | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "@iot-app-kit/vite-config", | ||
"version": "12.2.1", | ||
"private": true, | ||
"type": "module", | ||
"exports": { | ||
"./definePackageConfig": "./src/definePackageConfig.ts" | ||
}, | ||
"bin": { | ||
"iot-prepack": "./src/scripts/prepack.cts", | ||
"iot-postpack": "./src/scripts/postpack.cts" | ||
}, | ||
"scripts": { | ||
"clean": "npx rimraf .cache .turbo", | ||
"clean:nuke": "npm run clean && npx rimraf node_modules", | ||
"lint": "eslint . --max-warnings=0 --cache --cache-location .cache/eslint/ & tsc --noEmit", | ||
"fix": "eslint --fix . --cache --cache-location ./cache/eslint/", | ||
"test:typescript": "tsc --noEmit" | ||
}, | ||
"devDependencies": { | ||
"@iot-app-kit/eslint-config": "*", | ||
"@iot-app-kit/ts-config": "*", | ||
"@types/fs-extra": "^11.0.4", | ||
"@types/node": "^18.16.18", | ||
"rimraf": "^5.0.1" | ||
}, | ||
"dependencies": { | ||
"fs-extra": "^11.2.0", | ||
"lodash-es": "^4.17.21", | ||
"rollup-plugin-copy": "^3.5.0", | ||
"tiny-invariant": "^1.3.1", | ||
"type-fest": "^4.28.1", | ||
"typescript": "^5.5.4", | ||
"vite": "^5.4.11", | ||
"vite-plugin-dts": "^4.3.0" | ||
} | ||
} |
Oops, something went wrong.