Skip to content

Commit 848ac9c

Browse files
Merge pull request #7 from Nerimity/idk
Update
2 parents 2a6b14b + 9267b84 commit 848ac9c

File tree

11 files changed

+4217
-10157
lines changed

11 files changed

+4217
-10157
lines changed

.editorconfig

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/format.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ node_modules
22
dist
33
gitignore
44

5-
# VSC Settings
6-
.vscode/settings.json
5+
# tsup
6+
tsup.config.bundled_*.{m,c,}s

.prettierrc

Lines changed: 0 additions & 13 deletions
This file was deleted.

env.d.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
declare global {
2+
interface ImportMeta {
3+
env: {
4+
NODE_ENV: 'production' | 'development'
5+
PROD: boolean
6+
DEV: boolean
7+
}
8+
}
9+
namespace NodeJS {
10+
interface ProcessEnv {
11+
NODE_ENV: 'production' | 'development'
12+
PROD: boolean
13+
DEV: boolean
14+
}
15+
}
16+
}
17+
18+
export {}

0 commit comments

Comments
 (0)