rainnny.club/tsconfig.json

41 lines
670 B
JSON
Raw Permalink Normal View History

2024-08-28 23:15:07 -04:00
{
"compilerOptions": {
2024-09-09 21:25:27 -04:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-08-28 23:15:07 -04:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2024-09-09 21:25:27 -04:00
"@/*": [
"./src/*"
]
2024-10-22 15:50:18 -04:00
},
"target": "ES2017"
2024-08-28 23:15:07 -04:00
},
2024-09-09 21:25:27 -04:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2024-08-28 23:15:07 -04:00
}