market/tsconfig.json

34 lines
950 B
JSON
Raw Normal View History

2020-05-07 08:03:30 +02:00
{
"compilerOptions": {
"target": "esnext",
"module": "ES2020",
"lib": ["dom", "ES2020"],
2020-05-07 08:03:30 +02:00
"resolveJsonModule": true,
"moduleResolution": "node",
"jsx": "preserve",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmit": true,
"sourceMap": true,
"noImplicitAny": true,
2021-10-13 18:48:59 +02:00
"paths": {
"@shared/*": ["./src/components/@shared/*"],
2021-10-18 20:44:33 +02:00
"@hooks/*": ["./src/@hooks/*"],
"@context/*": ["./src/@context/*"],
"@images/*": ["./src/@images/*"],
"@utils/*": ["./src/@utils/*"],
"@content/*": ["./@content/*"]
},
"baseUrl": ".",
"strict": false,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true,
"allowJs": true,
"esModuleInterop": true,
"incremental": true
2020-05-07 08:03:30 +02:00
},
"exclude": ["node_modules", ".next", "*.js"],
2021-10-27 19:33:57 +02:00
"include": ["./src/**/*", "./tests/**/*", "./next-env.d.ts", "./content/**/*"]
2020-05-07 08:03:30 +02:00
}