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