mirror of
https://github.com/Discreetly/interfaces.git
synced 2026-01-07 20:13:56 -05:00
27 lines
616 B
JSON
27 lines
616 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"target": "ES5",
|
|
"module": "ES6",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noEmitOnError": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types",
|
|
},
|
|
"files": [
|
|
"./src/index.ts"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"src/types",
|
|
],
|
|
} |