You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"paths": {
|
|
|
|
"@components/*": ["components/*"],
|
|
|
|
"@pages/*": ["pages/*"],
|
|
|
|
"@common/*": ["common/*"]
|
|
|
|
},
|
|
|
|
"baseUrl": "src"
|
|
|
|
},
|
|
|
|
"exclude": ["node_modules", ".next"],
|
|
|
|
"include": [
|
|
|
|
"**/src/**/*.ts",
|
|
|
|
"**/test/**/*.ts",
|
|
|
|
"next-env.d.ts",
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.mdx",
|
|
|
|
"types/**/*.d.ts"
|
|
|
|
],
|
|
|
|
"noImplicitAny": false
|
|
|
|
}
|