diff --git a/.changeset/popular-laws-walk.md b/.changeset/popular-laws-walk.md new file mode 100644 index 00000000..f6d75936 --- /dev/null +++ b/.changeset/popular-laws-walk.md @@ -0,0 +1,5 @@ +--- +'create-jellycommands': patch +--- + +update the jsconfig.json and tsconfig.json diff --git a/packages/create-jellycommands/src/js/jsconfig.json b/packages/create-jellycommands/src/js/jsconfig.json new file mode 100644 index 00000000..c094d51a --- /dev/null +++ b/packages/create-jellycommands/src/js/jsconfig.json @@ -0,0 +1,19 @@ +// * Don't delete me!!! +// * If you have questions, ask in The Dev Lounge Discord +// * https://discord.com/invite/2Vd4wAjJnm + +{ + "compilerOptions": { + "lib": ["ESNext"], + "module": "ESNext", + "target": "ESNext", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "strict": true, + "checkJs": true, + "allowJs": true + }, + "include": ["./src/**/*.js", "./src/**/*.ts"], +} \ No newline at end of file diff --git a/packages/create-jellycommands/src/ts/tsconfig.json b/packages/create-jellycommands/src/ts/tsconfig.json index e3b0ab96..c094d51a 100644 --- a/packages/create-jellycommands/src/ts/tsconfig.json +++ b/packages/create-jellycommands/src/ts/tsconfig.json @@ -1,12 +1,19 @@ +// * Don't delete me!!! +// * If you have questions, ask in The Dev Lounge Discord +// * https://discord.com/invite/2Vd4wAjJnm + { "compilerOptions": { - "strict": true, "lib": ["ESNext"], "module": "ESNext", "target": "ESNext", - "allowSyntheticDefaultImports": true, - "moduleResolution": "node" + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "strict": true, + "checkJs": true, + "allowJs": true }, - "include": ["src/**/*.ts"], - "exclude": ["node_modules/**"] + "include": ["./src/**/*.js", "./src/**/*.ts"], } \ No newline at end of file