# HG changeset patch # User am@osimis.io # Date 1529481025 -7200 # Node ID a4197519eb551d04a2e01cf02eabe492bfbf590c # Parent ddbb339ed4cf6fd7451266ed1ba803f211694e27 share tsconfig files between samples diff -r ddbb339ed4cf -r a4197519eb55 Applications/Samples/Web/tsconfig-samples.json --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Applications/Samples/Web/tsconfig-samples.json Wed Jun 20 09:50:25 2018 +0200 @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "sourceMap": false, + "lib" : [ + "es2017", + "dom" + ] + }, + "include" : [ + "../../../Platforms/Wasm/stone-framework-loader.ts", + "../../../Platforms/Wasm/wasm-application.ts", + "../../../Platforms/Wasm/wasm-viewport.ts" + ] +} diff -r ddbb339ed4cf -r a4197519eb55 Applications/Samples/Web/tsconfig-simple-viewer.json --- a/Applications/Samples/Web/tsconfig-simple-viewer.json Wed Jun 20 09:43:36 2018 +0200 +++ b/Applications/Samples/Web/tsconfig-simple-viewer.json Wed Jun 20 09:50:25 2018 +0200 @@ -1,16 +1,9 @@ { + "extends" : "./tsconfig-samples", "compilerOptions": { - "outFile": "../../../Platforms/Wasm/build-web/app-simple-viewer.js", - "sourceMap": false, - "lib" : [ - "es2017", - "dom" - ] + "outFile": "../../../Platforms/Wasm/build-web/app-simple-viewer.js" }, "include" : [ - "simple-viewer.ts", - "../../../Platforms/Wasm/stone-framework-loader.ts", - "../../../Platforms/Wasm/wasm-application.ts", - "../../../Platforms/Wasm/wasm-viewport.ts" + "simple-viewer.ts" ] } \ No newline at end of file