32 lines
520 B
JSON
32 lines
520 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"
|
||
|
}
|
||
|
}
|