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": {
"target": "es5",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true
}
}
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true
},
"exclude": [
"tests",
]
}