29 lines
770 B
JSON
29 lines
770 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components/*": ["components/*"],
|
|
"@lib/*": ["lib/*"],
|
|
"@server/*": ["server/*"],
|
|
"@ee/*": ["ee/*"]
|
|
},
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"types": ["@types/jest", "jest-playwright-preset", "expect-playwright"]
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "lib/*.js"],
|
|
"exclude": ["node_modules"]
|
|
}
|