David Warner II 6d2d8731cb Dynamic SPFx Bundling/Loading Web Part Example (#628)
* Updated the api-scopes tutorial sample to SPFx v1.6.0 (#617)

* Dynamic SPFx Bundling Initial Commit
2018-10-03 08:02:22 -04:00

35 lines
618 B
JSON

{
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"skipLibCheck": true,
"outDir": "lib",
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"es6-promise",
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection"
]
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"lib"
]
}