1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-15 09:35:21 +01:00
blog/tsconfig.json

17 lines
362 B
JSON
Raw Normal View History

2019-10-02 13:35:50 +02:00
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"esModuleInterop": true,
"module": "commonjs",
"target": "esnext",
"strict": true,
"jsx": "react",
"lib": ["dom", "esnext"],
"noEmit": true
},
"exclude": ["node_modules", "public", ".cache", "*.js"],
"include": ["./src/**/*"]
}