knockout-webpack-ts-quickstart
Version:
Quickstart project for knockout.js + TypeScript + decorators with Webpack2.
32 lines (31 loc) • 900 B
JSON
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"lib": ["dom", "es6", "es2015", "es2016", "es2017", "scripthost"],
"outDir": "bin",
"rootDir": "src",
"declaration": true,
"declarationDir": "declarations",
"sourceMap": true,
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
// "noUnusedParameters": true,
// "noUnusedLocals": true,
// "noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
},
"types": ["node", "jquery", "bootstrap", "knockout", "jasmine"]
},
"exclude": [
"bin",
"declarations",
"dist",
"node_modules"
]
}