@shibanet0/datamitsu-config 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Next.js app",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
4
  "jsx": "preserve",
7
5
  "lib": ["dom", "dom.iterable", "esnext"],
8
6
  "noEmit": true,
9
7
  "noUncheckedSideEffectImports": false,
10
- "types": ["node"],
11
- "rootDir": "${configDir}",
12
8
  "plugins": [
13
9
  {
14
10
  "name": "next"
15
11
  }
16
- ]
12
+ ],
13
+ "rootDir": "${configDir}",
14
+ "types": ["node"]
17
15
  },
16
+ "display": "Next.js app",
17
+ "exclude": ["${configDir}/node_modules"],
18
+ "extends": "./base.json",
18
19
  "include": [
19
20
  "${configDir}",
20
21
  "${configDir}/**/*.json",
21
22
  "${configDir}/next-env.d.ts",
22
23
  "${configDir}/.next/types/**/*.ts"
23
- ],
24
- "exclude": ["${configDir}/node_modules"]
24
+ ]
25
25
  }
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Standalone React component library",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
- "lib": ["dom", "dom.iterable", "esnext"],
7
4
  "jsx": "react-jsx",
5
+ "lib": ["dom", "dom.iterable", "esnext"],
8
6
  "noEmit": true
9
- }
7
+ },
8
+ "display": "Standalone React component library",
9
+ "extends": "./base.json"
10
10
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Backend service",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
- "types": ["node"],
7
- "noEmit": true
8
- }
4
+ "noEmit": true,
5
+ "types": ["node"]
6
+ },
7
+ "display": "Backend service",
8
+ "extends": "./base.json"
9
9
  }
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Monorepo shared library",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
4
  "composite": true,
7
5
  "declaration": true,
8
6
  "declarationMap": true
9
- }
7
+ },
8
+ "display": "Monorepo shared library",
9
+ "extends": "./base.json"
10
10
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Monorepo shared React component library",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
- "lib": ["dom", "dom.iterable", "esnext"],
7
- "jsx": "react-jsx",
8
4
  "composite": true,
9
5
  "declaration": true,
10
- "declarationMap": true
11
- }
6
+ "declarationMap": true,
7
+ "jsx": "react-jsx",
8
+ "lib": ["dom", "dom.iterable", "esnext"]
9
+ },
10
+ "display": "Monorepo shared React component library",
11
+ "extends": "./base.json"
12
12
  }
@@ -1,2 +0,0 @@
1
- import type { TypedFlatConfigItem } from "../types";
2
- export declare function toml(): Promise<TypedFlatConfigItem[]>;
@@ -1,2 +0,0 @@
1
- import type { TypedFlatConfigItem } from "../types";
2
- export declare function yml(): Promise<TypedFlatConfigItem[]>;