1
0
Fork 0
blog/tsconfig.json

28 lines
637 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/",
2021-11-28 22:49:16 +01:00
"target": "esnext",
2021-12-02 19:23:17 +01:00
"module": "esnext",
2021-03-14 02:58:37 +01:00
"moduleResolution": "node",
"lib": ["dom", "esnext"],
2021-12-02 19:23:17 +01:00
"jsx": "react",
// "strict": true,
2021-08-29 14:59:21 +02:00
"esModuleInterop": true,
2021-12-02 19:23:17 +01:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2022-02-12 14:30:57 +01:00
"resolveJsonModule": true,
2021-12-02 19:23:17 +01:00
"noEmit": true,
"skipLibCheck": true,
2021-03-14 01:34:04 +01:00
"plugins": [{ "name": "typescript-plugin-css-modules" }]
2019-10-02 13:35:50 +02:00
},
"exclude": ["node_modules", "public", ".cache", "*.js"],
"include": [
"./*.ts",
"./src/**/*",
"./gatsby*",
"./gatsby/**/*",
"./scripts/*.ts",
"./.jest/**/*"
]
2019-10-02 13:35:50 +02:00
}