912e439645
* feat: baseline support for file sizes * feat: script to add file sizes
30 lines
820 B
JSON
30 lines
820 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"components/*": ["components/*"],
|
|
"hooks/*": ["lib/hooks/*"],
|
|
"middleware/*": ["lib/middleware/*"],
|
|
"lib/*": ["lib/*"],
|
|
"config/*": ["lib/config/*"],
|
|
"utils/*": ["lib/utils/*"]
|
|
},
|
|
"incremental": true
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", "dist", ".yarn", ".next"]
|
|
}
|