umami/tsconfig.json

44 lines
1.2 KiB
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
2023-11-14 13:36:52 +08:00
"target": "es2021",
"outDir": "./build",
"module": "esnext",
"moduleResolution": "node",
"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,
2023-08-22 06:53:19 +08:00
"jsx": "preserve",
2023-08-24 04:10:12 +08:00
"incremental": false,
2023-08-24 05:39:38 +08:00
"baseUrl": "./src",
2023-08-24 04:10:12 +08:00
"paths": {
2023-12-04 13:19:03 +08:00
"react": ["./node_modules/@types/react"],
2023-08-24 05:39:38 +08:00
"assets/*": ["./assets/*"],
"components/*": ["./components/*"],
"lib/*": ["./lib/*"],
"pages/*": ["./pages/*"],
"queries/*": ["./queries/*"],
"store/*": ["./store/*"],
"styles/*": ["./styles/*"]
2023-09-29 20:29:22 +08:00
},
"plugins": [
{
"name": "next"
}
]
},
2023-09-29 20:29:22 +08:00
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts", ".next/types/**/*.ts"],
2024-03-02 05:25:32 +08:00
"exclude": ["node_modules", "./cypress.config.ts", "cypress"]
}