Newer
Older
"noImplicitAny": true,
"strictNullChecks": true,
/* https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping */
"moduleResolution": "nodenext",
"module": "nodenext",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false /* we aren't prepared for enabling this by default since ts 4.4*/,
"isolatedModules": true /* required for esbuild */,
"allowJs": true,
"ignoreDeprecations": "5.0",
"skipLibCheck": true, // https://github.com/vitejs/vite/discussions/12466#discussioncomment-7596971
"paths": {
"~test/*": ["./test/*"]
}
"include": ["**/*.mts", "**/*.ts", "**/*.js", "**/*.mjs", "**/*.cjs"],
"exclude": [
"node_modules",
"./.cache",
"./dist",
"**/__mocks__/*",
"coverage",
"tools/mkdocs/site"
"ts-node": {
"transpileOnly": true,