plugin init

This commit is contained in:
2025-12-28 03:24:26 +01:00
parent 514a60e66c
commit bf2e6f8a44
19 changed files with 2242 additions and 0 deletions

17
awake/tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"compilerOptions": {
"customConditions": [
"node"
],
"module": "ES2022",
"moduleResolution": "Bundler",
"noImplicitOverride": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}