move stuff

This commit is contained in:
Tommy D. Rossi
2025-11-16 17:43:30 +01:00
parent 77edadd429
commit 00ac96cecd
8 changed files with 0 additions and 69 deletions
-10
View File
@@ -1,10 +0,0 @@
{
"$schema": "https://unpkg.com/@changesets/config@1.4.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
-1
View File
@@ -1 +0,0 @@
{}
-24
View File
@@ -1,24 +0,0 @@
{
"name": "new-package-template",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/remorses/",
"scripts": {
"build": "tsc && tsc -m es6 --outDir esm",
"watch": "tsc -w"
},
"files": [
"dist",
"src",
"esm"
],
"keywords": [],
"author": "Tommaso De Rossi, morse <beats.by.morse@gmail.com>",
"license": "",
"devDependencies": {},
"dependencies": {},
"peerDependencies": {}
}
-9
View File
@@ -1,9 +0,0 @@
import { test, expect } from 'vitest'
test('ready', () => {
expect(true).toBe(true)
})
test('two', () => {
expect(true).toBe(true)
})
View File
-8
View File
@@ -1,8 +0,0 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist"
},
"include": ["src"]
}

Before

Width:  |  Height:  |  Size: 422 KiB

After

Width:  |  Height:  |  Size: 422 KiB

-17
View File
@@ -1,17 +0,0 @@
// vite.config.ts
import { defineConfig } from 'vite'
export default defineConfig({
esbuild: {
jsx: 'transform',
},
test: {
exclude: ['**/dist/**', '**/esm/**', '**/node_modules/**', '**/e2e/**'],
pool: 'threads',
poolOptions: {
threads: {
isolate: false,
},
},
},
})