mirror of
https://github.com/AThilenius/axum-connect.git
synced 2025-01-08 18:51:46 +00:00
36 lines
995 B
JSON
36 lines
995 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"alwaysStrict": true,
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"paths": { "~/*": ["src/*"] },
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"target": "es6",
|
|
"useDefineForClassFields": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules/**/*"]
|
|
}
|