Skip to content

Commit

Permalink
tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
privatenumber committed Jul 14, 2024
1 parent 6868a2e commit 3c44679
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/specs/tsconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import path from 'path';
import { createRequire } from 'node:module';
import { testSuite, expect } from 'manten';
import { createFixture } from 'fs-fixture';
import { execa, ExecaError } from 'execa';
import { execa, type ExecaError } from 'execa';
import { tsconfigJson } from '../utils.js';

const webpackCli = path.resolve('node_modules/webpack-cli/bin/cli.js');
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "es2022",
"lib": ["ESNext.Disposable"],
"lib": ["ESNext"],
"moduleDetection": "force",

"module": "preserve",
Expand All @@ -12,6 +12,7 @@
"noImplicitOverride": true,
"noEmit": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
}
}
}

0 comments on commit 3c44679

Please sign in to comment.