sdin
Version:
JavaScript package builder.
39 lines (38 loc) • 1.01 kB
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"],
"main/*": ["src/main/*"],
"tools/*": ["src/tools/*"],
"utils/*": ["src/utils/*"]
}
}
}