Add base tsconfig.build.json
This commit is contained in:
parent
f4f70220d2
commit
8cfe886d46
3
nx.json
3
nx.json
|
@ -12,7 +12,8 @@
|
|||
"inputs": [
|
||||
"{workspaceRoot}/scripts/*",
|
||||
"{workspaceRoot}/lerna.json",
|
||||
"{workspaceRoot}/.github/workflows/*"
|
||||
"{workspaceRoot}/.github/workflows/*",
|
||||
"{workspaceRoot}/tsconfig.build.json"
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es6",
|
||||
"module": "commonjs",
|
||||
"lib": ["es2020"],
|
||||
"strict": true,
|
||||
"noImplicitAny": true,
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"declaration": true,
|
||||
"isolatedModules": true
|
||||
},
|
||||
"exclude": []
|
||||
}
|
Loading…
Reference in New Issue