mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"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,
|
|
"jsx": "preserve",
|
|
"incremental": false,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"react": ["./node_modules/@types/react"],
|
|
"assets/*": ["./assets/*"],
|
|
"components/*": ["./components/*"],
|
|
"lib/*": ["./lib/*"],
|
|
"pages/*": ["./pages/*"],
|
|
"queries/*": ["./queries/*"],
|
|
"store/*": ["./store/*"],
|
|
"styles/*": ["./styles/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|