GuessWhoIAmS/tsconfig.json

23 lines
377 B
JSON
Raw Normal View History

2023-08-28 05:44:19 +00:00
{
"compilerOptions": {
"lib": [
2023-08-31 11:28:35 +00:00
"es2018"
2023-08-28 05:44:19 +00:00
],
2023-08-31 11:28:35 +00:00
"module": "commonjs",
"target": "es2018",
"outDir": "dist",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
// "paths": {
// "@/*": [
// "./src/*"
// ]
// }
},
"include": [
"src"
]
2023-08-28 05:44:19 +00:00
}