1e4937bf41
For some reason the newer webpack versions can't handle the destructured assignment from a dynamic import of a JSON file.
33 lines
551 B
JSON
33 lines
551 B
JSON
{
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"src/**/tests/*",
|
|
"src/headless/dist/",
|
|
"src/website.js"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "esnext",
|
|
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
|
|
"rootDir": "./src",
|
|
"outDir": "./dist/types/",
|
|
"baseUrl": "./src/",
|
|
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|