2
0
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:
Vjacheslav Trushkin 2022-03-16 16:10:14 +02:00
parent 96c7486f7c
commit 41afe33976
6 changed files with 22 additions and 16 deletions

View File

@ -9,6 +9,7 @@ yarn.lock
tsconfig.tsbuildinfo
.eslintrc.cjs
tsconfig.json
tsconfig.common.json
jest.config.*
jest.shared.config.cjs
vitest.config.*

View File

@ -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",

View File

@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../tsconfig.common.json",
"compilerOptions": {
"types": ["node", "jest"],
"rootDir": ".",

View File

@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2019",
"module": "ESNext",
"strict": true,
"skipLibCheck": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"resolveJsonModule": true
}
}

View File

@ -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"]
}

View File

@ -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",