Skip to content

Commit

Permalink
Update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Sep 25, 2023
1 parent 1ae288e commit ab31c22
Showing 1 changed file with 133 additions and 45 deletions.
178 changes: 133 additions & 45 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,12 @@
],
"compilerOptions": {
"paths": {
"@babel/cli": ["./packages/babel-cli/src"],
"@babel/code-frame": ["./packages/babel-code-frame/src"],
"@babel/cli": [
"./packages/babel-cli/src"
],
"@babel/code-frame": [
"./packages/babel-code-frame/src"
],
"@babel/compat-data/plugins": [
"./packages/babel-compat-data/data/plugins.json"
],
Expand All @@ -185,8 +189,12 @@
"@babel/compat-data/plugin-bugfixes": [
"./packages/babel-compat-data/data/plugin-bugfixes.json"
],
"@babel/core": ["./packages/babel-core/src"],
"@babel/generator": ["./packages/babel-generator/src"],
"@babel/core": [
"./packages/babel-core/src"
],
"@babel/generator": [
"./packages/babel-generator/src"
],
"@babel/helper-annotate-as-pure": [
"./packages/babel-helper-annotate-as-pure/src"
],
Expand All @@ -211,7 +219,9 @@
"@babel/helper-environment-visitor": [
"./packages/babel-helper-environment-visitor/src"
],
"@babel/helper-fixtures": ["./packages/babel-helper-fixtures/src"],
"@babel/helper-fixtures": [
"./packages/babel-helper-fixtures/src"
],
"@babel/helper-function-name": [
"./packages/babel-helper-function-name/src"
],
Expand Down Expand Up @@ -266,10 +276,18 @@
"@babel/helper-wrap-function": [
"./packages/babel-helper-wrap-function/src"
],
"@babel/helpers": ["./packages/babel-helpers/src"],
"@babel/highlight": ["./packages/babel-highlight/src"],
"@babel/node": ["./packages/babel-node/src"],
"@babel/parser": ["./packages/babel-parser/src"],
"@babel/helpers": [
"./packages/babel-helpers/src"
],
"@babel/highlight": [
"./packages/babel-highlight/src"
],
"@babel/node": [
"./packages/babel-node/src"
],
"@babel/parser": [
"./packages/babel-parser/src"
],
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [
"./packages/babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression/src"
],
Expand Down Expand Up @@ -351,7 +369,9 @@
"@babel/plugin-syntax-export-default-from": [
"./packages/babel-plugin-syntax-export-default-from/src"
],
"@babel/plugin-syntax-flow": ["./packages/babel-plugin-syntax-flow/src"],
"@babel/plugin-syntax-flow": [
"./packages/babel-plugin-syntax-flow/src"
],
"@babel/plugin-syntax-function-bind": [
"./packages/babel-plugin-syntax-function-bind/src"
],
Expand All @@ -373,7 +393,9 @@
"@babel/plugin-syntax-import-source": [
"./packages/babel-plugin-syntax-import-source/src"
],
"@babel/plugin-syntax-jsx": ["./packages/babel-plugin-syntax-jsx/src"],
"@babel/plugin-syntax-jsx": [
"./packages/babel-plugin-syntax-jsx/src"
],
"@babel/plugin-syntax-module-blocks": [
"./packages/babel-plugin-syntax-module-blocks/src"
],
Expand Down Expand Up @@ -599,57 +621,105 @@
"@babel/plugin-transform-unicode-sets-regex": [
"./packages/babel-plugin-transform-unicode-sets-regex/src"
],
"@babel/preset-env": ["./packages/babel-preset-env/src"],
"@babel/preset-flow": ["./packages/babel-preset-flow/src"],
"@babel/preset-react": ["./packages/babel-preset-react/src"],
"@babel/preset-typescript": ["./packages/babel-preset-typescript/src"],
"@babel/register": ["./packages/babel-register/src"],
"@babel/standalone": ["./packages/babel-standalone/src"],
"@babel/template": ["./packages/babel-template/src"],
"@babel/traverse": ["./packages/babel-traverse/src"],
"@babel/types": ["./packages/babel-types/src"],
"@babel/preset-env": [
"./packages/babel-preset-env/src"
],
"@babel/preset-flow": [
"./packages/babel-preset-flow/src"
],
"@babel/preset-react": [
"./packages/babel-preset-react/src"
],
"@babel/preset-typescript": [
"./packages/babel-preset-typescript/src"
],
"@babel/register": [
"./packages/babel-register/src"
],
"@babel/standalone": [
"./packages/babel-standalone/src"
],
"@babel/template": [
"./packages/babel-template/src"
],
"@babel/traverse": [
"./packages/babel-traverse/src"
],
"@babel/types": [
"./packages/babel-types/src"
],
"@babel/plugin-codemod-object-assign-to-object-spread": [
"./codemods/babel-plugin-codemod-object-assign-to-object-spread/src"
],
"@babel/plugin-codemod-optional-catch-binding": [
"./codemods/babel-plugin-codemod-optional-catch-binding/src"
],
"@babel/plugin-syntax-async-functions": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-async-generators": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-bigint": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-class-properties": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-class-static-block": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-dynamic-import": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-async-functions": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-async-generators": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-bigint": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-class-properties": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-class-static-block": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-dynamic-import": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-exponentiation-operator": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-export-extensions": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-export-extensions": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-export-namespace-from": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-import-meta": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-json-strings": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-import-meta": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-json-strings": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-logical-assignment-operators": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-module-string-names": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-module-string-names": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-nullish-coalescing-operator": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-numeric-separator": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-object-rest-spread": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-numeric-separator": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-object-rest-spread": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-optional-catch-binding": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-optional-chaining": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-optional-chaining": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-private-property-in-object": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-top-level-await": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-top-level-await": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-trailing-function-commas": [
"./lib/archived-libs.d.ts"
],
"@babel/plugin-syntax-unicode-sets-regex": ["./lib/archived-libs.d.ts"],
"@babel/plugin-syntax-unicode-sets-regex": [
"./lib/archived-libs.d.ts"
],
"@babel/preset-modules/lib/plugins/transform-async-arrows-in-class": [
"./lib/third-party-libs.d.ts"
],
Expand All @@ -668,21 +738,39 @@
"@babel/preset-modules/lib/plugins/transform-safari-for-shadowing": [
"./lib/third-party-libs.d.ts"
],
"babel-plugin-polyfill-corejs2": ["./lib/third-party-libs.d.ts"],
"babel-plugin-polyfill-corejs3": ["./lib/third-party-libs.d.ts"],
"babel-plugin-polyfill-regenerator": ["./lib/third-party-libs.d.ts"],
"regenerator-transform": ["./lib/third-party-libs.d.ts"],
"babel-plugin-polyfill-corejs2": [
"./lib/third-party-libs.d.ts"
],
"babel-plugin-polyfill-corejs3": [
"./lib/third-party-libs.d.ts"
],
"babel-plugin-polyfill-regenerator": [
"./lib/third-party-libs.d.ts"
],
"regenerator-transform": [
"./lib/third-party-libs.d.ts"
],
"babel-plugin-dynamic-import-node/utils": [
"./lib/babel-plugin-dynamic-import-node.d.ts"
],
"globals": ["./node_modules/globals-BABEL_8_BREAKING-true"],
"js-tokens": ["./node_modules/js-tokens-BABEL_8_BREAKING-true"],
"regexpu-core": ["./lib/regexpu-core.d.ts"],
"globals": [
"./node_modules/globals-BABEL_8_BREAKING-true"
],
"js-tokens": [
"./node_modules/js-tokens-BABEL_8_BREAKING-true"
],
"regexpu-core": [
"./lib/regexpu-core.d.ts"
],
"to-fast-properties": [
"./node_modules/to-fast-properties-BABEL_8_BREAKING-true"
],
"slash": ["./node_modules/slash-BABEL_8_BREAKING-true"],
"kexec": ["./lib/kexec.d.ts"]
"slash": [
"./node_modules/slash-BABEL_8_BREAKING-true"
],
"kexec": [
"./lib/kexec.d.ts"
]
}
}
}
}

0 comments on commit ab31c22

Please sign in to comment.