mirror of
https://github.com/PretendoNetwork/website.git
synced 2025-04-02 11:11:50 -04:00
32 lines
765 B
JSON
32 lines
765 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/components/*": ["./src/components/*"],
|
|
"@/utils/*": ["./src/utils/*"],
|
|
"@/public/*": ["./public/*"],
|
|
"@/locales/*": ["./locales/*"],
|
|
"@/app/*": ["./src/app/*"]
|
|
},
|
|
"allowJs": true,
|
|
"allowImportingTsExtensions": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx", "src/utils/buildtime.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|