mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
27 lines
635 B
JSON
27 lines
635 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "esnext",
|
|
"downlevelIteration": true,
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
}
|
|
},
|
|
|
|
"exclude": ["node_modules", ".next"],
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next.config.js"]
|
|
}
|