mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 09:56:51 +01:00
28 lines
637 B
JSON
28 lines
637 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": ["dom", "esnext"],
|
|
"jsx": "react",
|
|
// "strict": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"plugins": [{ "name": "typescript-plugin-css-modules" }]
|
|
},
|
|
"exclude": ["node_modules", "public", ".cache", "*.js"],
|
|
"include": [
|
|
"./*.ts",
|
|
"./src/**/*",
|
|
"./gatsby*",
|
|
"./gatsby/**/*",
|
|
"./scripts/*.ts",
|
|
"./.jest/**/*"
|
|
]
|
|
}
|