Files

37 lines
860 B
JSON
Raw Permalink Normal View History

2021-08-25 22:52:32 +01:00
{
"compilerOptions": {
"jsx": "preserve",
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
2024-12-09 01:28:54 +09:00
"lib": ["ESNext", "DOM"],
"target": "es6",
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
2024-12-09 01:28:54 +09:00
"@/*": ["./src/*"]
},
"strictNullChecks": false
},
"include": [
"src/misc_types.d.ts",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
2024-12-09 01:28:54 +09:00
"exclude": ["node_modules"]
2021-08-25 22:52:32 +01:00
}