Create tsconfig.json

This commit is contained in:
Haruki Kondo
2023-12-28 23:09:56 +09:00
committed by GitHub
parent f01fc37e77
commit 7a18559b97

View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "es2016",
/* Modules */
"module": "commonjs",
"sourceMap": true,
"outDir": "./dist",
"esModuleInterop": true,
// "preserveSymlinks": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
],
}