mirror of
https://github.com/iconify/iconify.git
synced 2025-04-06 16:21:51 +00:00
Fix tsconfig in core, specify config when clearing jest cache
This commit is contained in:
parent
96c7486f7c
commit
41afe33976
@ -9,6 +9,7 @@ yarn.lock
|
||||
tsconfig.tsbuildinfo
|
||||
.eslintrc.cjs
|
||||
tsconfig.json
|
||||
tsconfig.common.json
|
||||
jest.config.*
|
||||
jest.shared.config.cjs
|
||||
vitest.config.*
|
||||
|
@ -17,8 +17,8 @@
|
||||
"lint": "eslint --fix src/**/*.ts",
|
||||
"prebuild": "npm run lint && npm run clean",
|
||||
"build": "unbuild",
|
||||
"test:jest-cjs": "jest --clearCache && jest --runInBand --config=jest.config.cjs",
|
||||
"test:jest-esm": "jest --clearCache && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --config=jest.config.mjs",
|
||||
"test:jest-cjs": "jest --clearCache --config=jest.config.cjs && jest --runInBand --config=jest.config.cjs",
|
||||
"test:jest-esm": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --clearCache --config=jest.config.mjs && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --config=jest.config.mjs",
|
||||
"test": "npm run test:jest-cjs && npm run test:jest-esm",
|
||||
"vitest:cjs": "vitest --config vitest.config.cjs",
|
||||
"vitest:esm": "vitest --config vitest.config.mjs",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"extends": "../tsconfig.common.json",
|
||||
"compilerOptions": {
|
||||
"types": ["node", "jest"],
|
||||
"rootDir": ".",
|
||||
|
13
packages/core/tsconfig.common.json
Normal file
13
packages/core/tsconfig.common.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2019",
|
||||
"module": "ESNext",
|
||||
"strict": true,
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"importsNotUsedAsValues": "error",
|
||||
"resolveJsonModule": true
|
||||
}
|
||||
}
|
@ -1,17 +1,9 @@
|
||||
{
|
||||
"extends": "./tsconfig.common.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./",
|
||||
"rootDir": "./src",
|
||||
"outDir": "./lib",
|
||||
"target": "ES2019",
|
||||
"module": "ESNext",
|
||||
"lib": ["ESNext", "DOM"],
|
||||
"strict": true,
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"importsNotUsedAsValues": "error",
|
||||
"resolveJsonModule": true
|
||||
"lib": ["ESNext", "DOM"]
|
||||
},
|
||||
"include": ["src/**/*.ts"]
|
||||
}
|
||||
|
@ -17,8 +17,8 @@
|
||||
"lint": "eslint --fix src/**/*.ts",
|
||||
"prebuild": "npm run lint && npm run clean",
|
||||
"build": "unbuild",
|
||||
"test:jest-cjs": "jest --clearCache && jest --runInBand --config=jest.config.cjs",
|
||||
"test:jest-esm": "jest --clearCache && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --config=jest.config.mjs",
|
||||
"test:jest-cjs": "jest --clearCache --config=jest.config.cjs && jest --runInBand --config=jest.config.cjs",
|
||||
"test:jest-esm": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --clearCache --config=jest.config.mjs && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --config=jest.config.mjs",
|
||||
"test": "npm run test:jest-cjs && npm run test:jest-esm",
|
||||
"vitest:cjs": "vitest --config vitest.config.cjs",
|
||||
"vitest:esm": "vitest --config vitest.config.mjs",
|
||||
|
Loading…
x
Reference in New Issue
Block a user