From e99aefb50ca63e2dbcc95841efbb53cea90151d8 Mon Sep 17 00:00:00 2001 From: Tim Baumann Date: Sat, 23 Sep 2017 22:02:01 +0200 Subject: Add compile step that bundles and compresses JS files (#684) * Add compile step that bundles and compresses JS files Also, manage dependencies on third-party JS libraries using NPM. * Compile JS from TypeScript * Enable 'noImplicitAny' in TypeScript * QuickJump: use JSX syntax * Generate source maps from TypeScript for easier debugging * TypeScript: more accurate type * Separate quick jump css file from ocean theme --- haddock-api/resources/html/tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 haddock-api/resources/html/tsconfig.json (limited to 'haddock-api/resources/html/tsconfig.json') diff --git a/haddock-api/resources/html/tsconfig.json b/haddock-api/resources/html/tsconfig.json new file mode 100644 index 00000000..f2c19b59 --- /dev/null +++ b/haddock-api/resources/html/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "sourceMap": true, + "noImplicitAny": true, + "strictNullChecks": true, + "noImplicitThis": true, + "noFallthroughCasesInSwitch": true, + "module": "commonjs", + "target": "es5", + "jsx": "react", + "jsxFactory": "h", + "lib": ["es2015", "dom"] + }, + "include": [ + "js-src/*" + ] +} \ No newline at end of file -- cgit v1.2.3