|
1 | 1 | { |
2 | 2 | "compilerOptions": { |
3 | 3 | "target": "ES2022" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, |
4 | | - "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, |
| 4 | + "module": "ES2022" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, |
5 | 5 | "outDir": "dist", |
6 | 6 | "lib": [ |
7 | | - "es2020" |
| 7 | + "es2020", |
| 8 | + "es2022" /* Include ES2022 library for additional features. */ |
8 | 9 | ] /* Specify library files to be included in the compilation. */, |
9 | 10 | "downlevelIteration": true /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */, |
10 | 11 | "strict": true /* Enable all strict type-checking options. */, |
11 | | - "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */, |
| 12 | + "moduleResolution": "bundler" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */, |
12 | 13 | "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, |
13 | 14 | "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */, |
14 | 15 | "emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */, |
| 16 | + "forceConsistentCasingInFileNames": false, |
15 | 17 | "resolveJsonModule": true, |
16 | 18 | "types": ["vitest/globals"] |
17 | 19 | } |
18 | 20 | } |
| 21 | + |
0 commit comments