1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-10 20:00:09 +02:00
blog/tsconfig.json

22 lines
585 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",
2021-12-02 19:23:17 +01:00
"lib": ["dom", "es2017"],
// "allowJs": true,
// "checkJs": true,
"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,
"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"],
2021-02-28 04:09:56 +01:00
"include": ["./src/**/*", "./scripts/*.ts", "./jest/**/*"]
2019-10-02 13:35:50 +02:00
}