35 lines
881 B
JSON
35 lines
881 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ES2021"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
// Bundler mode
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
// Linting
|
|
"allowJs": false,
|
|
"strict": false,
|
|
"strictBindCallApply": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"typeRoots": ["./node_modules/@types", "./src/types"],
|
|
"incremental": true,
|
|
"strictNullChecks": true
|
|
},
|
|
"include": ["next-env.d.ts", "src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["node_modules"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|