Files
portabase/tsconfig.json
T

42 lines
698 B
JSON
Raw Normal View History

2024-11-03 11:30:44 +01:00
{
"compilerOptions": {
2024-11-03 15:29:30 +01:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-11-03 11:30:44 +01:00
"allowJs": true,
"skipLibCheck": true,
2024-11-03 15:29:30 +01:00
// "strict": true,
2024-11-03 11:30:44 +01:00
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2024-11-03 15:29:30 +01:00
"@/*": [
"./src/*"
]
},
2024-11-10 23:12:38 +01:00
"strict": false,
"target": "ES2017"
2024-11-03 11:30:44 +01:00
},
2024-11-03 15:29:30 +01:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
2024-11-11 18:50:42 +01:00
".next/types/**/*.ts",
2024-11-03 15:29:30 +01:00
],
"exclude": [
"node_modules"
]
2024-11-03 11:30:44 +01:00
}