Skip to content

Commit

Permalink
fix: tsconfig base
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Dec 29, 2024
1 parent 895b31e commit 44ebd82
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
16 changes: 14 additions & 2 deletions packages/typst.node/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
{
"extends": "./tsconfig.lib.json",
"include": ["src/**/*.mts", "__test__/**/*.spec.ts"]
"compilerOptions": {
"target": "ES2018",
"strict": true,
"moduleResolution": "node",
"module": "CommonJS",
"declaration": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": ["./index.ts"],
"exclude": ["node_modules"]
}
16 changes: 0 additions & 16 deletions packages/typst.node/tsconfig.lib.json

This file was deleted.

4 changes: 4 additions & 0 deletions packages/typst.node/tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "./tsconfig.lib.json",
"include": ["src/**/*.mts", "__test__/**/*.spec.ts"]
}

0 comments on commit 44ebd82

Please sign in to comment.