sdin
Version:
JavaScript package builder.
36 lines (35 loc) • 911 B
JSON
{
"include": ["src", "pro"],
"exclude": ["node_modules"],
"compilerOptions": {
"checkJs": false,
"allowJs": true,
"strict": true,
"alwaysStrict": true,
"declaration": true,
"removeComments": false,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": false,
"preserveConstEnums": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"lib": ["ESNext", "DOM"],
"module": "CommonJS",
"target": "ES2015",
"outDir": "tar",
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"sourceMap": true,
"declarationMap": false,
"baseUrl": ".",
"paths": {
"<%= projectName %>": ["src"]
}
}
}