2020-08-16 04:40:38 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-03-08 02:45:14 +08:00
|
|
|
"target": "ES2021",
|
2020-08-18 08:24:43 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2020-08-16 04:40:38 +00:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
2020-08-18 08:24:43 +00:00
|
|
|
"strict": true,
|
2020-08-16 04:40:38 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2020-09-13 00:01:38 +09:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
|
"experimentalDecorators": true,
|
2021-09-20 09:39:56 +09:00
|
|
|
"emitDecoratorMetadata": true,
|
2022-01-19 20:04:34 -05:00
|
|
|
"useUnknownInCatchVariables": false,
|
2022-08-22 11:02:46 +09:00
|
|
|
"incremental": true,
|
|
|
|
|
"baseUrl": "src",
|
2024-06-23 23:43:54 +02:00
|
|
|
"downlevelIteration": true,
|
2022-08-22 11:02:46 +09:00
|
|
|
"paths": {
|
|
|
|
|
"@server/*": ["../server/*"],
|
|
|
|
|
"@app/*": ["*"]
|
|
|
|
|
}
|
2020-08-16 04:40:38 +00:00
|
|
|
},
|
2020-08-23 06:34:38 +00:00
|
|
|
"include": ["next-env.d.ts", "src/**/*.ts", "src/**/*.tsx"],
|
2020-08-18 08:24:43 +00:00
|
|
|
"exclude": ["node_modules"]
|
2020-08-16 04:40:38 +00:00
|
|
|
}
|