TrollCallAPIs/tsconfig.json

30 lines
758 B
JSON
Raw Permalink Normal View History

2023-06-19 05:16:00 +00:00
{
"compilerOptions": {
2023-08-29 19:52:02 +00:00
"target": "es2015",
2023-06-27 02:56:32 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
2023-06-19 05:16:00 +00:00
"skipLibCheck": true,
2023-06-27 02:56:32 +00:00
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"noErrorTruncation": true,
2023-06-27 02:56:32 +00:00
"module": "esnext",
2023-08-29 19:52:02 +00:00
"moduleResolution": "bundler",
2023-06-27 02:56:32 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
2023-06-19 05:16:00 +00:00
"paths": {
"@/*": ["./src/*"]
2023-06-27 02:56:32 +00:00
}
2023-06-19 05:16:00 +00:00
},
2023-09-25 17:45:33 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"src/pages/api/message/[clan]/.../index.ts"
],
2023-06-27 02:56:32 +00:00
"exclude": ["node_modules"]
2023-06-19 05:16:00 +00:00
}