Skip to content

Commit

Permalink
Update node configs
Browse files Browse the repository at this point in the history
  • Loading branch information
mthierman committed Jun 8, 2024
1 parent c0721df commit b6361dd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
File renamed without changes.
17 changes: 3 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"noEmit": true,
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": ["**/*.config.ts", "**/tools/scripts/*.ts"]
"files": [],
"include": [],
"references": [{ "path": "tsconfig.node.json" }]
}
14 changes: 14 additions & 0 deletions tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"noEmit": true,
"isolatedModules": true,
"strict": true,
"skipLibCheck": true
}
}

0 comments on commit b6361dd

Please sign in to comment.