diff --git a/packages/jest/tsconfig.json b/packages/jest/tsconfig.json index f283b99..7915920 100644 --- a/packages/jest/tsconfig.json +++ b/packages/jest/tsconfig.json @@ -4,7 +4,8 @@ "module": "commonjs", "moduleResolution": "Node", "outDir": "./dist", - "rootDir": "./src" + "rootDir": "./src", + "verbatimModuleSyntax": false }, "include": ["src"], "references": [] diff --git a/packages/vue/tsconfig.json b/packages/vue/tsconfig.json index ce3d70e..b3a4d27 100644 --- a/packages/vue/tsconfig.json +++ b/packages/vue/tsconfig.json @@ -1,39 +1,33 @@ { - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "lib": ["DOM", "DOM.Iterable", "ESNext"], - "jsx": "react", - "jsxFactory": "h", - "jsxFragmentFactory": "h", - "composite": false, - "verbatimModuleSyntax": true, - "plugins": [ - { - "name": "typescript-plugin-css-modules" - } - ], - "types": ["node", "vite/client"] - }, - "include": [ - "./src/**/*.ts", - "./src/**/*.tsx", - "./src/**/*.json", - "./src/**/*.scss" - ], - "references": [ - { - "path": "../dom/tsconfig.json" + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "outDir": "./dist", + "rootDir": "./src", + "lib": ["DOM", "DOM.Iterable", "ESNext"], + "jsx": "react", + "jsxFactory": "h", + "jsxFragmentFactory": "h", + "composite": false, + "plugins": [ + { + "name": "typescript-plugin-css-modules" + } + ], + "types": ["node", "vite/client"] }, - { - "path": "../ioc/tsconfig.json" - }, - { - "path": "../types/tsconfig.json" - }, - { - "path": "../utils/tsconfig.json" - } - ] + "include": ["./src/**/*.ts", "./src/**/*.tsx", "./src/**/*.json", "./src/**/*.scss"], + "references": [ + { + "path": "../dom/tsconfig.json" + }, + { + "path": "../ioc/tsconfig.json" + }, + { + "path": "../types/tsconfig.json" + }, + { + "path": "../utils/tsconfig.json" + } + ] } diff --git a/tsconfig.base.json b/tsconfig.base.json index 6827cf5..fac675b 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -26,7 +26,8 @@ "resolveJsonModule": true, "incremental": true, "importHelpers": true, - "preserveSymlinks": true + "preserveSymlinks": true, + "verbatimModuleSyntax": true }, "exclude": ["node_modules"] }