2022-04-12 13:48:22 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-02-19 12:52:25 -08:00
|
|
|
"target": "esnext",
|
2022-04-12 13:48:22 -07:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
2022-09-12 08:53:57 -07:00
|
|
|
"incremental": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@components/*": ["components/*"],
|
2022-09-13 23:24:26 -07:00
|
|
|
"@store/*": ["store/*"],
|
|
|
|
"@public/*": ["public/*"]
|
2022-09-12 08:53:57 -07:00
|
|
|
}
|
2022-04-12 13:48:22 -07:00
|
|
|
},
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
2022-09-13 23:24:26 -07:00
|
|
|
"exclude": ["node_modules", "public/datafeeds"]
|
2022-04-12 13:48:22 -07:00
|
|
|
}
|