13 lines
331 B
JSON
13 lines
331 B
JSON
// TypeScript config for Webpack configuration (webpack.config.ts)
|
|
// See: https://webpack.js.org/configuration/configuration-languages/#typescript
|
|
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": true,
|
|
"lib": ["esnext"],
|
|
"types": ["node"]
|
|
},
|
|
"include": ["./webpack.config.ts"]
|
|
}
|