mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
40 lines
853 B
JSON
40 lines
853 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"baseUrl": ".",
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"lib": [
|
|
"dom",
|
|
"es2017",
|
|
"esnext"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"paths": {},
|
|
"removeComments": false,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"stripInternal": true,
|
|
"target": "es5"
|
|
},
|
|
"include": [
|
|
"src/assets/javascripts",
|
|
"typings",
|
|
"webpack.config.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|