diff --git a/tsconfig.debug.json b/tsconfig.debug.json index 100e932..904a958 100644 --- a/tsconfig.debug.json +++ b/tsconfig.debug.json @@ -2,6 +2,8 @@ "extends": "./tsconfig.json", "compilerOptions": { "sourceMap": true, + "declarationMap": true, + "declaration": true, "noEmit": false, "incremental": true, "outDir": "build/debug" diff --git a/tsconfig.json b/tsconfig.json index 4cd6541..700b8f0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,14 @@ { "compilerOptions": { "target": "es2015", - "module": "commonjs", + "module": "nodenext", "strict": true, "sourceMap": false, "esModuleInterop": true, "resolveJsonModule": false, "allowJs": false, - "declaration": true, - "declarationMap": true, + "declaration": false, + "declarationMap": false, "outDir": "build/release", "baseUrl": "./", "paths": { "*": ["node/modules/*"] },