27 lines
639 B
JSON
27 lines
639 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["esnext", "dom"],
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": false,
|
|
"allowArbitraryExtensions": false,
|
|
"isolatedModules": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationDir": "dist/types",
|
|
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noPropertyAccessFromIndexSignature": false
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["dist", "test", "src/examples"]
|
|
}
|