feat(regime)
This commit is contained in:
commit
f04afd6cca
36 changed files with 1058 additions and 0 deletions
5
templates/package/.regime-template.json
Normal file
5
templates/package/.regime-template.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"inherits": [
|
||||
"tools-ts"
|
||||
]
|
||||
}
|
||||
8
templates/package/package.json
Normal file
8
templates/package/package.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"scripts": {
|
||||
"test": "bun test --pass-with-no-tests"
|
||||
},
|
||||
"files": [
|
||||
"src"
|
||||
]
|
||||
}
|
||||
13
templates/package/tsconfig.json
Normal file
13
templates/package/tsconfig.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"module": "esnext",
|
||||
"target": "esnext",
|
||||
"lib": ["esnext"],
|
||||
"moduleResolution": "bundler",
|
||||
"esModuleInterop": true,
|
||||
"skipDefaultLibCheck": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"noEmit": true
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue