TrollCallAPIs/tsconfig.json
MeowcaTheoRange 42b8b0840a whups
2023-07-03 00:30:27 -05:00

24 lines
661 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"noErrorTruncation": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.d.ts", "src/**/*.ts"],
"exclude": ["node_modules"]
}