mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
29 lines
738 B
JSON
29 lines
738 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"outDir": "./build",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": 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,
|
|
"baseUrl": ".",
|
|
"strictNullChecks": false,
|
|
"noEmit": true,
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|