Skip to content

Commit 9f1b318

Browse files
committed
make package-level tsconfig.json inherit from repo-level tsconfig.json
1 parent eb03314 commit 9f1b318

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

packages/angular/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": "."

packages/browser/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*", "test/**/*"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/core/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/gatsby/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts", "test/integration.test.tsx", "src/**/*.tsx", "test/**/*.tsx"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/hub/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/integrations/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/minimal/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/nextjs/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/node/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/react/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts", "src/**/*.tsx", "test/**/*.tsx"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/serverless/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/tracing/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/types/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/utils/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/vue/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts", "src/**/*.tsx", "test/**/*.tsx"],
44
"compilerOptions": {
55
"rootDir": ".",

packages/wasm/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.build.json",
2+
"extends": "../../tsconfig.json",
33
"include": ["src/**/*.ts", "test/**/*.ts"],
44
"compilerOptions": {
55
"esModuleInterop": true,

0 commit comments

Comments
 (0)