1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-28 08:37:57 +02:00
blog/tsconfig.json

24 lines
700 B
JSON
Raw Normal View History

2019-10-02 13:35:50 +02:00
{
"compilerOptions": {
2019-10-11 23:50:03 +02:00
"outDir": "./dist/",
2021-08-29 14:59:21 +02:00
"target": "ESNext",
2021-03-14 02:58:37 +01:00
"moduleResolution": "node",
2021-08-29 14:59:21 +02:00
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"skipLibCheck": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noFallthroughCasesInSwitch": true,
2021-03-14 02:58:37 +01:00
"resolveJsonModule": true,
2021-08-29 14:59:21 +02:00
"esModuleInterop": true,
2021-03-14 02:58:37 +01:00
"jsx": "preserve",
2021-03-14 01:34:04 +01:00
"plugins": [{ "name": "typescript-plugin-css-modules" }]
2019-10-02 13:35:50 +02:00
},
"exclude": ["node_modules", "public", ".cache", "*.js"],
2021-02-28 04:09:56 +01:00
"include": ["./src/**/*", "./scripts/*.ts", "./jest/**/*"]
2019-10-02 13:35:50 +02:00
}