1
0
Fork 0
mirror of https://github.com/archtechx/alpine-typescript.git synced 2025-12-12 06:44:03 +00:00

tsc build

This commit is contained in:
Samuel Štancl 2021-02-26 16:29:55 +01:00
parent 5bbbd5e35a
commit f7db3d093c
7 changed files with 118 additions and 5 deletions

View file

@ -2,7 +2,9 @@
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": ["ES2017", "DOM"]
"lib": ["ES2017", "DOM"],
"declaration": true,
"outDir": "dist/"
},
"include": ["src/**/*"]
}