You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@components/*": ["src/html/components/*"],
|
|
|
|
},
|
|
|
|
/* Language and Environment */
|
|
|
|
"target": "es6",
|
|
|
|
"lib": ["es2018", "DOM"],
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/ts/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"node_modules",
|
|
|
|
]
|
|
|
|
}
|