mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-14 09:05:17 +01:00
18 lines
431 B
JSON
18 lines
431 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "esnext"],
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true
|
|
},
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
|
"include": ["./src/**/*", "./jest/**/*"]
|
|
}
|