UNPKG

1.01 kBJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.defaultGitIgnore = exports.defaultOutDir = exports.defaultConfiguration = void 0;
4exports.defaultConfiguration = {
5 language: 'ts',
6 sourceRoot: 'src',
7 collection: '@nestjs/schematics',
8 entryFile: 'main',
9 projects: {},
10 monorepo: false,
11 compilerOptions: {
12 tsConfigPath: 'tsconfig.build.json',
13 webpack: false,
14 webpackConfigPath: 'webpack.config.js',
15 plugins: [],
16 assets: [],
17 },
18 generateOptions: {},
19};
20exports.defaultOutDir = 'dist';
21exports.defaultGitIgnore = `# compiled output
22/dist
23/node_modules
24
25# Logs
26logs
27*.log
28npm-debug.log*
29pnpm-debug.log*
30yarn-debug.log*
31yarn-error.log*
32lerna-debug.log*
33
34# OS
35.DS_Store
36
37# Tests
38/coverage
39/.nyc_output
40
41# IDEs and editors
42/.idea
43.project
44.classpath
45.c9/
46*.launch
47.settings/
48*.sublime-workspace
49
50# IDE - VSCode
51.vscode/*
52!.vscode/settings.json
53!.vscode/tasks.json
54!.vscode/launch.json
55!.vscode/extensions.json`;