AdminLTE/tsconfig.json

28 lines
553 B
JSON

{
"root": true,
"compilerOptions": {
"noUnusedParameters": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"target": "es2018",
"module": "esnext",
"strict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"baseUrl": ".",
"paths": {
"@components/*": ["src/html/components/*"],
},
},
"include": [
"src/ts/**/*"
],
"exclude": [
"dist",
"node_modules",
]
}