Build typescript to JS for npm
This commit is contained in:
parent
533ae9b183
commit
c7cf6d1135
39 changed files with 260 additions and 109 deletions
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"removeComments": true,
|
||||
"noLib": false,
|
||||
"noImplicitAny": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"sourceMap": true,
|
||||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"lib": [
|
||||
"es6",
|
||||
"es2015",
|
||||
"dom"
|
||||
],
|
||||
"jsx": "react",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"documentation/*": [
|
||||
|
@ -32,5 +47,14 @@
|
|||
"node",
|
||||
"jest"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"./**/*.ts",
|
||||
"./**/*.tsx"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"./**/__tests__/*.tsx",
|
||||
".vscode"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue