Merge remote-tracking branch 'origin/next' into fix/addon-interactions-build

This commit is contained in:
Ian VanSchooten 2022-10-04 13:30:05 -04:00
commit e37191110f
6 changed files with 9 additions and 13 deletions

View File

@ -1,7 +1,6 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"experimentalDecorators": true,
"declaration": true,
"jsx": "preserve",
"skipLibCheck": true,

View File

@ -6,7 +6,6 @@
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,

View File

@ -5,6 +5,8 @@
"target": "ES2020",
"module": "CommonJS",
"lib": ["es2020", "dom"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "dist",
"types": ["node"],
"skipLibCheck": true,

View File

@ -1,7 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDecoratorMetadata": false,
"strict": true
},
"include": ["src/**/*"],

View File

@ -5,8 +5,6 @@
"incremental": false,
"noImplicitAny": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"moduleResolution": "Node",
"target": "ES2020",

View File

@ -1,12 +1,9 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
"jsx": "react",
"moduleResolution": "Node",
"target": "ES2020",
@ -20,8 +17,6 @@
"dom",
"esnext"
],
"types": [
"node",
"jest"
@ -35,7 +30,9 @@
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"paths": {
"verdaccio": ["./typings.d.ts"]
"verdaccio": [
"./typings.d.ts"
]
}
},
"exclude": [
@ -48,7 +45,9 @@
"**/*.test.ts",
"**/setup-jest.ts"
],
"include": ["./**/*"],
"include": [
"./**/*"
],
"ts-node": {
"transpileOnly": true,
"files": true,
@ -58,4 +57,4 @@
]
}
}
}
}