diff --git a/002_source/cms/tsconfig.json b/002_source/cms/tsconfig.json index 6c00847..ee073f3 100644 --- a/002_source/cms/tsconfig.json +++ b/002_source/cms/tsconfig.json @@ -24,38 +24,29 @@ "@/*": ["./src/*"] } }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - "**/*.tsx.plan", - ".next/types/**/*.ts" - // - ], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "exclude": [ - "**/node_modules", - "**/.next", - "**/*.bak", - "**/*.log", - "**/*.tmp", - "**/*.bug", - "**/*.del", - "**/*.draft", - "**/* copy *.tsx", - "**/* copy.tsx" - // + "node_modules", + ".next", + "*.bak", + "*.log", + "*.tmp", + "*.bug", + "*.del", + "*.draft", + "* copy *.tsx", + "* copy.tsx" ], "watchOptions": { - "excludeDirectories": ["**/node_modules", "_build", "temp/*", "**/.next", "**/_archive", "**/_del"], - "excludeFiles": [ - "**/*.bak", - "**/*.log", - "**/*.tmp", - "**/*.bug", - "**/*.del", - "**/*.draft", - "**/* copy *.tsx", - "**/* copy.tsx" - ] + "excludeDirectories": [ + "node_modules", + "_build", + "temp", + ".next", + "_archive", + "_del" + // + ], + "excludeFiles": ["*.bak", "*.log", "*.tmp", "*.bug", "*.del", "*.draft", "* copy *.tsx", "* copy.tsx"] } }