1
0
Fork 0
blog/tsconfig.json

18 lines
449 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/",
2019-10-02 13:35:50 +02:00
"target": "esnext",
2019-11-15 21:15:43 +01:00
"module": "commonjs",
2019-10-11 23:50:03 +02:00
"lib": ["dom", "esnext"],
2019-10-13 19:08:36 +02:00
"allowJs": true,
2019-11-15 21:15:43 +01:00
"resolveJsonModule": true,
"jsx": "react",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noImplicitAny": true
2019-10-02 13:35:50 +02:00
},
"exclude": ["node_modules", "public", ".cache", "*.js"],
2021-02-28 04:09:56 +01:00
"include": ["./src/**/*", "./scripts/*.ts", "./jest/**/*"]
2019-10-02 13:35:50 +02:00
}