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.
46 lines
1.1 KiB
46 lines
1.1 KiB
{ |
|
"compilerOptions": { |
|
"lib": ["dom", "dom.iterable", "esnext"], |
|
"module": "esnext", |
|
"moduleResolution": "node", |
|
"resolveJsonModule": true, |
|
"removeComments": true, |
|
"preserveConstEnums": true, |
|
"strict": true, |
|
"alwaysStrict": true, |
|
"strictNullChecks": true, |
|
"noUncheckedIndexedAccess": true, |
|
|
|
"noImplicitAny": true, |
|
"noImplicitReturns": true, |
|
"noImplicitThis": true, |
|
"noUnusedLocals": true, |
|
"noUnusedParameters": true, |
|
"allowUnreachableCode": false, |
|
"noFallthroughCasesInSwitch": true, |
|
|
|
"target": "es5", |
|
"outDir": "out", |
|
"declaration": true, |
|
"sourceMap": true, |
|
|
|
"esModuleInterop": true, |
|
"allowSyntheticDefaultImports": true, |
|
"allowJs": false, |
|
"skipLibCheck": true, |
|
"forceConsistentCasingInFileNames": true, |
|
|
|
"jsx": "preserve", |
|
"noEmit": true, |
|
"isolatedModules": true, |
|
"incremental": true, |
|
|
|
"baseUrl": ".", |
|
"paths": { |
|
"@/*": ["./src/*"], |
|
"@/public/*": ["./public/*"] |
|
} |
|
}, |
|
"exclude": ["./out/**/*", "./node_modules/**/*"], |
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"] |
|
}
|
|
|