chore: setup npm workspaces and plugin types as package

This commit is contained in:
Aleksi Lassila
2025-02-08 01:40:19 +02:00
parent 1203c958fc
commit 7d2397bc7f
18 changed files with 121 additions and 35 deletions

View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist",
"baseUrl": "./",
"target": "ES2021",
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": false,
"lib": ["es6"]
},
"include": ["src/**/*.ts"]
}