TrollCallAPIs/tsconfig.json
2023-06-19 00:16:00 -05:00

20 lines
516 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"strict": true,
"skipLibCheck": true,
"noErrorTruncation": true,
"moduleResolution": "node",
"rootDir": "src",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"outDir": "./dist/"
},
"include": ["src/**/*.d.ts", "src/**/*.ts"]
}