@lipemat/js-boilerplate
Version:
Dependencies and scripts for a no config JavaScript app
30 lines (29 loc) • 844 B
JSON
{
"//~": "@see ./templates/tsconfig.json to use/extend this configuration in your project",
"//~~": "PHPStorm will only see changes to the file, if you re-save the project root's tsconfig.json file",
"$schema": "https://json.schemastore.org/tsconfig",
"display": "JS Boilerplate",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"lib": [
"DOM",
"ES2018"
],
"module": "ESNext",
"moduleResolution": "Node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"sourceMap": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"target": "ES2018",
"verbatimModuleSyntax": false
},
"exclude": [
"node_modules"
]
}