UNPKG

@backan/builder

Version:

Backan library for building executables, client libraries, JSON schema files, TypeScript definitions, and Markdown documentation.

44 lines (43 loc) 1.03 kB
{ "compilerOptions": { "target": "ES2022", "module": "ESNext", "moduleResolution": "Bundler", /** * Options. */ "strict": true, "alwaysStrict": true, "strictPropertyInitialization": true, "noImplicitAny": true, "strictNullChecks": true, "sourceMap": true, "resolveJsonModule": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true, "useDefineForClassFields": true, // "allowImportingTsExtensions": false, // "baseUrl": ".", /** * Typecheck JS in `.svelte` and `.js` files by default. * Disable checkJs if you'd like to use dynamic types in JS. * Note that setting allowJs false does not prevent the use * of JS in `.svelte` files. */ "allowJs": true, "checkJs": true, "noEmit": true, "isolatedModules": true, "importHelpers": true, "removeComments": false, "allowSyntheticDefaultImports": true, "outDir": "./dist", "baseUrl": "./src" }, "include": [ "./src/", "../../package.json", "./package.json" ] }