2021-03-26 01:16:42 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictPropertyInitialization": true
|
|
|
|
},
|
|
|
|
"include": [
|
2021-05-16 19:06:02 +00:00
|
|
|
"src/ts/**/*"
|
2021-03-26 01:16:42 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"node_modules",
|
|
|
|
"plugins"
|
|
|
|
]
|
|
|
|
}
|