commit
9008d21407
6
.gitignore
vendored
6
.gitignore
vendored
@ -57,3 +57,9 @@ typings/
|
|||||||
# dotenv environment variables file
|
# dotenv environment variables file
|
||||||
.env
|
.env
|
||||||
|
|
||||||
|
# built library using in commonjs module syntax
|
||||||
|
lib
|
||||||
|
# built library using es6 module syntax to enable webpack and rollup tree shaking
|
||||||
|
lib-esm
|
||||||
|
# UMD bundles that export the global variable
|
||||||
|
_bundles
|
||||||
|
15
tsconfig.json
Normal file
15
tsconfig.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"module": "commonjs",
|
||||||
|
"target": "es5",
|
||||||
|
"lib": [ "es2015", "dom" ],
|
||||||
|
"outDir": "lib",
|
||||||
|
"sourceMap": true,
|
||||||
|
"declaration": true,
|
||||||
|
"noImplicitAny": true,
|
||||||
|
"strictNullChecks": true
|
||||||
|
},
|
||||||
|
"include": [
|
||||||
|
"./src/ts/**/*"
|
||||||
|
]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user