File tree 4 files changed +24
-20
lines changed
4 files changed +24
-20
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
3
+ // Pointez pour afficher la description des attributs existants.
4
+ // Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+
8
+ {
9
+ "type" : " node" ,
10
+ "request" : " launch" ,
11
+ "name" : " Run main AVA tests" ,
12
+ "program" : " ${workspaceRoot}/node_modules/ava/profile.js" ,
13
+ "args" : [
14
+ " ${workspaceFolder}/build/lib.test.js"
15
+ ]
16
+ }
17
+ ]
18
+ }
Original file line number Diff line number Diff line change 11
11
"test:codecov" : " tslint -p ./ && tsc && nyc npm run ava" ,
12
12
"build:ts" : " tsc -p tsconfig.build.json" ,
13
13
"build" : " npm run build:ts && npm run build:ts -- -m es6 --outDir es" ,
14
+ "prepublish" : " npm run build" ,
14
15
"doc" : " npm run build && typedoc --out docs/ dist/" ,
15
16
"semantic-release" : " semantic-release" ,
16
17
"watch:ts" : " tsc -w" ,
Original file line number Diff line number Diff line change 7
7
"exclude" : [
8
8
" node_modules" ,
9
9
" es" ,
10
+ " dist" ,
10
11
" build"
11
12
]
12
13
}
Original file line number Diff line number Diff line change 1
1
{
2
+ "extends" : " ./tsconfig.base.json" ,
2
3
"compilerOptions" : {
3
- "target" : " ES2017" ,
4
- "module" : " commonjs" ,
5
- "lib" : [
6
- " es2017" ,
7
- " dom"
8
- ],
9
- "types" : [],
10
- "declaration" : true ,
11
- "sourceMap" : true ,
12
4
"outDir" : " ./build" ,
13
- "strict" : true ,
14
- "noImplicitAny" : true ,
15
- "strictNullChecks" : true ,
16
- "noImplicitThis" : true ,
17
- "alwaysStrict" : true ,
18
- "noUnusedLocals" : true ,
19
- "noUnusedParameters" : true ,
20
- "noImplicitReturns" : true ,
21
- "moduleResolution" : " node" ,
22
- "baseUrl" : " ./"
5
+ "baseUrl" : " ./" ,
6
+ "sourceMap" : true
23
7
},
24
8
"include" : [
25
9
" lib/*"
26
10
],
27
11
"exclude" : [
28
12
" node_modules"
29
13
]
30
- }
14
+ }
You can’t perform that action at this time.
0 commit comments