Files
Homarr/tsconfig.json

46 lines
802 B
JSON
Raw Permalink Normal View History

2022-04-24 22:36:47 +02:00
{
"compilerOptions": {
"target": "es2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2022-04-24 22:36:47 +02:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": false,
2022-04-24 22:36:47 +02:00
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2023-05-16 15:46:14 +09:00
"incremental": true,
"plugins": [
{
"name": "next"
}
2023-06-10 09:57:44 +02:00
],
"paths": {
"~/*": ["./src/*"]
},
2022-04-24 22:36:47 +02:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"next.config.js",
2023-05-16 15:46:14 +09:00
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
],
"ts-node": {
"compilerOptions": {
"module": "nodenext",
},
},
2023-06-07 21:11:32 +02:00
}