50 lines
899 B
JSON
50 lines
899 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/components/*": [
|
||
|
"app/components/*"
|
||
|
],
|
||
|
"@/lib/*": [
|
||
|
"app/lib/*"
|
||
|
],
|
||
|
"@/assets/*": [
|
||
|
"assets/*"
|
||
|
]
|
||
|
},
|
||
|
"target": "es5",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"esnext"
|
||
|
],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"incremental": true,
|
||
|
"plugins": [
|
||
|
{
|
||
|
"name": "next"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx",
|
||
|
"dist/types/**/*.ts",
|
||
|
".next/types/**/*.ts",
|
||
|
"assets/svg/tes.jsx"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|