next-app-boilerplate/tsconfig.json

25 lines
630 B
JSON
Raw Normal View History

2022-02-12 23:07:11 +01:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
2022-02-12 23:07:11 +01:00
"allowJs": true,
"checkJs": true,
"baseUrl": ".",
2022-02-12 23:07:11 +01:00
"strict": true,
"noEmit": true,
"jsx": "preserve",
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"removeComments": true,
"isolatedModules": true,
2022-02-12 23:07:11 +01:00
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"lib": ["dom", "dom.iterable", "esnext"],
"forceConsistentCasingInFileNames": true
2022-02-12 23:07:11 +01:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["dist", ".next", "out", "next.config.js"]
2022-02-12 23:07:11 +01:00
}