TrollCallAPIs/tsconfig.json

25 lines
661 B
JSON
Raw Normal View History

2023-06-19 05:16:00 +00:00
{
"compilerOptions": {
2023-06-27 02:56:32 +00:00
"target": "es5",
"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,
2023-07-03 05:30:27 +00:00
"noErrorTruncation": true,
2023-06-27 02:56:32 +00:00
"module": "esnext",
2023-06-19 05:16:00 +00:00
"moduleResolution": "node",
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-06-27 02:56:32 +00:00
"include": ["src/**/*.d.ts", "src/**/*.ts"],
"exclude": ["node_modules"]
2023-06-19 05:16:00 +00:00
}