You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.0 KiB
JSON

{
"compilerOptions": {
"downlevelIteration": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"~/components/*": [
"components/*"
],
"~/pages/*": [
"pages/*"
],
"~/styles/*": [
"styles/*"
],
"~/services/*": [
"services/*"
],
"~/hooks/*": [
"hooks/*"
],
"~/types/*": [
"types/*"
],
"~/icons/*": [
"icons/*"
],
"~/images/*": [
"images/*"
]
},
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"checkJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true
},
"include": [
"next-env.d.ts",
"additional.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}