umami/tsconfig.json
Mike Cao d3d86f43fa
Some checks are pending
Node.js CI / build (push) Waiting to run
Updated packages.
2026-02-05 20:29:40 -08:00

44 lines
995 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": false,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"strict": true,
"strictNullChecks": false,
"noEmit": true,
"jsx": "react-jsx",
"incremental": false,
"baseUrl": ".",
"outDir": "./build",
"paths": {
"@/*": ["./src/*"]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"next-env.d.ts",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules", "./cypress.config.ts", "cypress"]
}