1
0
Fork 0
blog/tsconfig.json

17 lines
362 B
JSON

{
"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/**/*"]
}