Files
tiktok-dl/tsconfig.json
2021-11-08 10:33:52 +07:00

20 lines
561 B
JSON

{
"compilerOptions": {
"allowJs": true,
"noEmit": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"outDir": "dist",
"target": "ES2016",
"module": "CommonJS",
"removeComments": true,
"esModuleInterop": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true
},
"exclude": ["node_modules", "dist"]
}