feat: initialize project with package.json and tsconfig.json
Some checks failed
Build and Package DXT / build (push) Failing after 47s
Some checks failed
Build and Package DXT / build (push) Failing after 47s
- Added package.json for project dependencies and scripts - Included TypeScript configuration in tsconfig.json
This commit is contained in:
commit
a433ac337d
8 changed files with 696 additions and 0 deletions
15
tsconfig.json
Normal file
15
tsconfig.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2022",
|
||||
"module": "CommonJS",
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"skipLibCheck": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"types": ["node"]
|
||||
},
|
||||
"include": ["**/*.ts"],
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue