2022-03-06 19:46:59 -05:00
|
|
|
{
|
2023-02-26 17:44:32 -05:00
|
|
|
"compilerOptions": {
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "typescript-plugin-css-modules"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"target": "es2020",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@components/*": [
|
|
|
|
"src/app/components/*"
|
|
|
|
],
|
|
|
|
"@lib/*": [
|
|
|
|
"src/lib/*"
|
|
|
|
],
|
|
|
|
"@styles/*": [
|
|
|
|
"src/app/styles/*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
".next/types/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|