1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 13:41:54 +02:00
blog/tsconfig.json

17 lines
400 B
JSON
Raw Normal View History

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