28 lines
724 B
JSON
28 lines
724 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2015",
|
||
|
"module": "ESNext",
|
||
|
"moduleDetection": "force",
|
||
|
"jsx": "react-jsx",
|
||
|
"allowJs": true,
|
||
|
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"verbatimModuleSyntax": true,
|
||
|
"noEmit": true,
|
||
|
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"emitDeclarationOnly": true,
|
||
|
|
||
|
"noUnusedLocals": false,
|
||
|
"noUnusedParameters": false,
|
||
|
"declaration": true,
|
||
|
"outDir": "dump/dist",
|
||
|
"noPropertyAccessFromIndexSignature": false
|
||
|
},
|
||
|
"include": ["index.ts", "index.d.ts", "**/*.ts"],
|
||
|
"exclude": ["dump"]
|
||
|
}
|