TrollCallAPIs/tsconfig.json

21 lines
516 B
JSON
Raw Normal View History

2023-06-19 05:16:00 +00:00
{
"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"]
}