1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 19:38:27 +02:00
mkdocs-material/tsconfig.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2019-09-28 19:32:02 +02:00
{
"compilerOptions": {
"alwaysStrict": true,
2019-12-18 17:14:20 +01:00
"baseUrl": "src/assets/javascripts",
2019-09-29 00:30:56 +02:00
"declaration": false,
"declarationMap": false,
"downlevelIteration": true,
"jsx": "react",
"jsxFactory": "h",
2019-09-28 19:32:02 +02:00
"lib": [
"dom",
"es2017",
"esnext",
"webworker"
2019-09-28 19:32:02 +02:00
],
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2019-12-18 17:14:20 +01:00
"paths": {
"browser": ["browser"],
2019-12-18 17:14:20 +01:00
"components": ["components"],
2020-02-14 14:50:11 +01:00
"integrations/*": ["integrations/*"],
2020-02-14 12:33:15 +01:00
"patches": ["patches"],
2019-12-18 17:14:20 +01:00
"templates": ["templates"],
"utilities": ["utilities"],
"workers": ["workers"]
},
2019-09-28 19:32:02 +02:00
"removeComments": false,
"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"
]
}