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.
 
 
 
 

23 lines
458 B

{
"compilerOptions": {
"noUnusedParameters": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"target": "es2018",
"module": "esnext",
"strict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true
},
"include": [
"src/ts/**/*"
],
"exclude": [
"dist",
"node_modules",
"plugins"
]
}