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