From d1428d8623607542ba94a167445deeb9c53f72df Mon Sep 17 00:00:00 2001 From: huuyafwww Date: Sun, 5 Jan 2025 21:18:03 +0900 Subject: [PATCH] add compilerOptions --- .changeset/mean-pants-wonder.md | 5 +++++ packages/tsconfig-next/tsconfig.base.json | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 .changeset/mean-pants-wonder.md diff --git a/.changeset/mean-pants-wonder.md b/.changeset/mean-pants-wonder.md new file mode 100644 index 0000000..f836f21 --- /dev/null +++ b/.changeset/mean-pants-wonder.md @@ -0,0 +1,5 @@ +--- +"@huuyafwww/tsconfig-next": minor +--- + +specification   target and forceConsistentCasingInFileNames diff --git a/packages/tsconfig-next/tsconfig.base.json b/packages/tsconfig-next/tsconfig.base.json index 56f8fe6..901a0d0 100644 --- a/packages/tsconfig-next/tsconfig.base.json +++ b/packages/tsconfig-next/tsconfig.base.json @@ -5,4 +5,12 @@ "@tsconfig/next/tsconfig.json" ], "include": ["src/index.ts"], + "compilerOptions": { + "allowJs": true, + "sourceMap": true, + "forceConsistentCasingInFileNames": true, + "moduleResolution": "Bundler", + "target": "ESNext", + "module": "ESNext", + } }