excluded the tests folder due typescript rootDir error

This commit is contained in:
jhalitaksoy 2021-06-30 19:49:58 +03:00
parent a5b9ec2513
commit 655b62c81e

View File

@ -1,13 +1,16 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es5", "target": "es5",
"module": "commonjs", "module": "commonjs",
"outDir": "./dist", "outDir": "./dist",
"rootDir": "./src", "rootDir": "./src",
"strict": true, "strict": true,
"esModuleInterop": true, "esModuleInterop": true,
"skipLibCheck": true, "skipLibCheck": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"sourceMap": true "sourceMap": true
} },
} "exclude": [
"tests",
]
}