AdminLTE/tsconfig.json

28 lines
553 B
JSON
Raw Normal View History

2021-03-26 01:16:42 +00:00
{
"root": true,
2021-03-26 01:16:42 +00:00
"compilerOptions": {
"noUnusedParameters": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitAny": true,
2021-06-23 17:49:35 +00:00
"target": "es2018",
2021-03-26 01:16:42 +00:00
"module": "esnext",
"strict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"baseUrl": ".",
"paths": {
"@components/*": ["src/html/components/*"],
},
2021-03-26 01:16:42 +00:00
},
"include": [
2021-05-16 19:06:02 +00:00
"src/ts/**/*"
2021-03-26 01:16:42 +00:00
],
"exclude": [
"dist",
"node_modules",
]
}