-
Section 1
-
-
- Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer
- ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit
- amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut
- odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.
-
-
-
Section 2
-
-
- Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet
- purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor
- velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In
- suscipit faucibus urna.
-
-
-
Section 3
-
-
- Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis.
- Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero
- ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis
- lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.
-
-
- - List item one
- - List item two
- - List item three
-
-
-
Section 4
-
-
- Cras dictum. Pellentesque habitant morbi tristique senectus et netus
- et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in
- faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia
- mauris vel est.
-
-
- Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus.
- Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
- inceptos himenaeos.
-
-
-
`;
-}
\ No newline at end of file
diff --git a/tutorials/src/webparts/jQuery/loc/en-us.js b/tutorials/src/webparts/jQuery/loc/en-us.js
deleted file mode 100644
index 89f98bc1e..000000000
--- a/tutorials/src/webparts/jQuery/loc/en-us.js
+++ /dev/null
@@ -1,7 +0,0 @@
-define([], function() {
- return {
- "PropertyPaneDescription": "Description",
- "BasicGroupName": "Group Name",
- "DescriptionFieldLabel": "Description Field"
- }
-});
\ No newline at end of file
diff --git a/tutorials/src/webparts/jQuery/loc/jQueryStrings.d.ts b/tutorials/src/webparts/jQuery/loc/jQueryStrings.d.ts
deleted file mode 100644
index d9f3ba82d..000000000
--- a/tutorials/src/webparts/jQuery/loc/jQueryStrings.d.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-declare interface IJQueryStrings {
- PropertyPaneDescription: string;
- BasicGroupName: string;
- DescriptionFieldLabel: string;
-}
-
-declare module 'jQueryStrings' {
- const jQueryStrings: IJQueryStrings;
- export = jQueryStrings;
-}
diff --git a/tutorials/src/webparts/jQuery/tests/JQuery.test.ts b/tutorials/src/webparts/jQuery/tests/JQuery.test.ts
deleted file mode 100644
index 8f8069c17..000000000
--- a/tutorials/src/webparts/jQuery/tests/JQuery.test.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import * as assert from 'assert';
-
-describe('JQueryWebPart', () => {
- it('should do something', () => {
- assert.ok(true);
- });
-});
diff --git a/tutorials/tsconfig.json b/tutorials/tsconfig.json
deleted file mode 100644
index 98c8662a9..000000000
--- a/tutorials/tsconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "compilerOptions": {
- "target": "es5",
- "module": "commonjs",
- "jsx": "react",
- "declaration": true,
- "sourceMap": true
- }
-}
diff --git a/tutorials/tsd.json b/tutorials/tsd.json
deleted file mode 100644
index e5bbf2ddc..000000000
--- a/tutorials/tsd.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "version": "v4",
- "repo": "borisyankov/DefinitelyTyped",
- "ref": "master",
- "path": "typings",
- "bundle": "typings/tsd.d.ts",
- "installed": {
- "jqueryui/jqueryui.d.ts": {
- "commit": "1b21ed5d2ed3afb3b2be9a3ef8b17ae2a52a4c27"
- },
- "jquery/jquery.d.ts": {
- "commit": "1b21ed5d2ed3afb3b2be9a3ef8b17ae2a52a4c27"
- },
- "combokeys/combokeys.d.ts": {
- "commit": "1b21ed5d2ed3afb3b2be9a3ef8b17ae2a52a4c27"
- }
- }
-}
diff --git a/tutorials/typings/@ms/odsp-webpack.d.ts b/tutorials/typings/@ms/odsp-webpack.d.ts
deleted file mode 100644
index f2b3b03df..000000000
--- a/tutorials/typings/@ms/odsp-webpack.d.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-// Type definitions for webpack in Microsoft ODSP projects
-// Project: ODSP-WEBPACK
-
-/*
- * This definition of webpack require overrides all other definitions of require in our toolchain
- * Make sure all other definitions of require are commented out e.g. in node.d.ts
- */
-declare var require: {
- (path: string): any;
- (paths: string[], callback: (...modules: any[]) => void): void;
- resolve: (id: string) => string;
- ensure: (paths: string[], callback: (require: