mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
42 lines
978 B
JSON
42 lines
978 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"baseUrl": "src",
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"lib": [
|
|
"dom",
|
|
"esnext",
|
|
"webworker"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"paths": {
|
|
"~/*": ["./templates/assets/javascripts/*"],
|
|
"_/*": ["./overrides/assets/javascripts/*"]
|
|
},
|
|
"removeComments": false,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"stripInternal": true,
|
|
"target": "es2018"
|
|
},
|
|
"include": [
|
|
"src/overrides/assets/javascripts",
|
|
"src/templates/assets/javascripts",
|
|
"tools",
|
|
"typings"
|
|
]
|
|
}
|