Updated to SPFx v1.4.1 (#427)

Updated tsconfig.json to latest default values.
This commit is contained in:
Mikael Svenson 2018-02-26 09:01:18 +01:00 committed by Vesa Juvonen
parent 9ae451514f
commit 546e353301
3 changed files with 17678 additions and 24 deletions

17648
samples/react-script-editor/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -6,8 +6,8 @@
"node": ">=0.10.0" "node": ">=0.10.0"
}, },
"dependencies": { "dependencies": {
"@microsoft/sp-core-library": "~1.4.0", "@microsoft/sp-core-library": "~1.4.1",
"@microsoft/sp-webpart-base": "~1.4.0", "@microsoft/sp-webpart-base": "~1.4.1",
"@types/react": "15.6.6", "@types/react": "15.6.6",
"@types/react-dom": "15.5.6", "@types/react-dom": "15.5.6",
"@types/webpack-env": ">=1.12.1 <1.14.0", "@types/webpack-env": ">=1.12.1 <1.14.0",
@ -16,9 +16,9 @@
"react-dom": "15.6.2" "react-dom": "15.6.2"
}, },
"devDependencies": { "devDependencies": {
"@microsoft/sp-build-web": "~1.4.0", "@microsoft/sp-build-web": "~1.4.1",
"@microsoft/sp-module-interfaces": "~1.4.0", "@microsoft/sp-module-interfaces": "~1.4.1",
"@microsoft/sp-webpart-workbench": "~1.4.0", "@microsoft/sp-webpart-workbench": "~1.4.1",
"gulp": "~3.9.1", "gulp": "~3.9.1",
"@types/chai": ">=3.4.34 <3.6.0", "@types/chai": ">=3.4.34 <3.6.0",
"@types/mocha": ">=2.2.33 <2.6.0", "@types/mocha": ">=2.2.33 <2.6.0",
@ -29,4 +29,4 @@
"clean": "gulp clean", "clean": "gulp clean",
"test": "gulp test" "test": "gulp test"
} }
} }

View File

@ -1,19 +1,25 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es5", "target": "es5",
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"module": "commonjs", "module": "commonjs",
"jsx": "react", "jsx": "react",
"declaration": true, "declaration": true,
"sourceMap": true, "sourceMap": true,
"types": [ "experimentalDecorators": true,
"es6-promise", "skipLibCheck": true,
"webpack-env" "typeRoots": [
], "./node_modules/@types",
"lib": [ "./node_modules/@microsoft"
"es5", ],
"dom", "types": [
"es2015.collection" "es6-promise",
] "webpack-env"
} ],
} "lib": [
"es5",
"dom",
"es2015.collection"
]
}
}