Repository URL to install this package:
|
Version:
1.0.0-next.10 ▾
|
@twnd/ux
/
tsconfig.json
|
|---|
{
"compilerOptions": {
"outDir": "./dist/packages/all",
"experimentalDecorators": true,
"target": "es2020",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"strictNullChecks": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"strictFunctionTypes": true,
"noImplicitAny": true,
"noImplicitThis": true,
"skipLibCheck": true,
"strictBindCallApply": true,
"lib": [
"es2020",
"dom"
],
"types": [
"jasmine"
],
"baseUrl": ".",
"paths": {
// @twnd/ux
"@twnd/ux/*": [
"./*"
]
}
},
"include": [
"./**/*.ts"
],
"exclude": [
"node_modules/"
]
}