youtuber-blog/tsconfig.json

24 lines
572 B
JSON
Raw Normal View History

2023-06-10 00:37:36 +00:00
{
"compilerOptions": {
2023-06-10 00:57:19 +00:00
"module": "CommonJS",
2023-06-10 00:37:36 +00:00
"target": "ESNext",
"strict": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2023-06-10 00:57:19 +00:00
"outDir": "dist",
"esModuleInterop": true,
2023-06-10 00:37:36 +00:00
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"@api/*": ["src/*"]
2023-06-10 00:57:19 +00:00
},
"skipLibCheck": true
},
"exclude": ["node_modules", "./dist/**/*"]
2023-06-10 00:37:36 +00:00
}