AdminLTE/tsconfig.json

32 lines
681 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": {
2023-03-29 07:48:56 +00:00
"noFallthroughCasesInSwitch": true,
2021-03-26 01:16:42 +00:00
"noUnusedParameters": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"module": "esnext",
2023-03-29 07:48:56 +00:00
"alwaysStrict": true,
2021-03-26 01:16:42 +00:00
"strict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"baseUrl": ".",
"paths": {
"@components/*": ["src/html/components/*"],
},
2023-03-29 07:48:56 +00:00
/* Language and Environment */
"target": "es6",
"lib": ["es2018", "DOM"],
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",
]
}