12345678910111213141516171819202122232425262728293031 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "commonjs",
- "strict": true,
- "sourceMap": true,
- "noImplicitAny": true,
- "noUnusedLocals": true,
- "noImplicitReturns": true,
- "moduleResolution": "node",
- "useDefineForClassFields": true, /* false ruins the discord commands (their parameters are not registering :( */
- "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
- "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
- "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
- "emitDecoratorMetadata": true,
- "declaration": true,
- "resolveJsonModule": true,
- "skipLibCheck": true,
- "types" : [
- "node"
- ],
- "forceConsistentCasingInFileNames": true,
- "baseUrl": ".",
- "typeRoots": [
- "./node_modules/@polkadot/ts",
- "./node_modules/@types"
- ],
- "declarationDir": "./dist",
- "outDir": "./dist"
- }
- }
|