16 lines
360 B
JSON
16 lines
360 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["es2020.string"],
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"exclude": ["src/**/*.test.ts"]
|
|
}
|