mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 09:56:51 +01:00
24 lines
700 B
JSON
24 lines
700 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"target": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"skipLibCheck": true,
|
|
"strictBindCallApply": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"plugins": [{ "name": "typescript-plugin-css-modules" }]
|
|
},
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
|
"include": ["./src/**/*", "./scripts/*.ts", "./jest/**/*"]
|
|
}
|