UNPKG

@mornya/vessel

Version:

Creates/publishes a Node.js module with no build configuration.

64 lines (63 loc) 1.23 kB
{ "compilerOptions": { "module": "CommonJS", "moduleResolution": "Node", "target": "ES5", "typeRoots": [ "./node_modules/@types", "./public/types", "./types" ], "types": [ "jest", "node", "react", "react-dom" ], "lib": [ "esnext", "esnext.asynciterable", "dom", "dom.iterable", "scripthost" ], "paths": { "@/*": [ "./src/*" ], "~/*": [ "./*" ] }, "baseUrl": ".", "outDir": "./dist/", "jsx": "react-jsx", "jsxImportSource": "react", "declaration": true, "esModuleInterop": true, "downlevelIteration": true, "resolveJsonModule": true, "skipLibCheck": true, "allowJs": true, "checkJs": false, "strict": true, "sourceMap": false, "allowSyntheticDefaultImports": true, "noImplicitAny": true, "experimentalDecorators": true, "removeComments": true, "preserveConstEnums": true, "forceConsistentCasingInFileNames": true, "verbatimModuleSyntax": false }, "include": [ "public/**/*.d.ts", "src/**/*", "types/**/*" ], "exclude": [ "coverage", "dist", "src/assets" ] }