成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁技術(shù)文章
文章詳情頁

node.js - webpack typescript2.x 出現(xiàn)Duplicate identifier錯(cuò)誤

瀏覽:74日期:2023-10-05 16:58:02

問題描述

問題解答

回答1:

解決了修改tsconfig.json

{ 'compilerOptions': { 'declaration': false, 'emitDecoratorMetadata': true, 'experimentalDecorators': true, 'module': 'commonjs', 'moduleResolution': 'node', 'outDir': 'dist', 'sourceMap': true, 'sourceRoot': 'src', 'target': 'es5', 'types': [ 'node', 'core-js', 'express' ], 'baseUrl': '.' }, 'include': [ 'src/**/*' ], 'exclude': [ 'node_modules', 'dist' ], 'awesomeTypescriptLoaderOptions': { 'useWebpackText': true, 'forkChecker': true }, 'compileOnSave': false, 'buildOnSave': false, 'atom': { 'rewriteTsconfig': false }}

標(biāo)簽: web
相關(guān)文章: