We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a745126 commit ad5518eCopy full SHA for ad5518e
.gitignore
@@ -11,8 +11,6 @@ docs/examples/*.md
11
docs/nodes
12
docs/myst.schema.md
13
*.tsbuildinfo
14
+
15
build
-/scripts/*
16
-!/scripts/*.ts
17
-/test/*
18
-!/test/tsconfig.json
+/test/compiled.ts
scripts/tsconfig.json
@@ -0,0 +1,14 @@
1
+{
2
+ "compilerOptions": {
3
+ "module": "nodenext",
4
+ "types": [],
5
+ "composite": true,
6
+ "declaration": true,
7
+ "declarationMap": true,
8
+ "noEmitOnError": true,
9
+ "skipLibCheck": true,
10
+ "outDir": "../bin"
+ },
+ "extends": "../tsconfig.json",
+ "include": ["./**/*"]
+}
0 commit comments