Skip to content

Commit

Permalink
aliases and various changes
Browse files Browse the repository at this point in the history
  • Loading branch information
panoply committed Sep 6, 2023
1 parent 4d8f558 commit 4540b1b
Showing 1 changed file with 32 additions and 16 deletions.
48 changes: 32 additions & 16 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,47 +8,51 @@
"docs"
],
"include": [
"lib/**/*.ts"
"lib/**/*.ts",
"types/*.d.ts",
"types/internal/cli.d.ts",
"types/internal/internal.d.ts"
],
"typeAcquisition": {
"enable": true,
"include": [
"node",
"./types/modules/"
]
},
"compilerOptions": {
"types": [
"node"
],
"incremental": true,
"target": "ESNext",
"removeComments": true,
"lib": [
"ESNext",
"es2020",
"DOM"
],
"module": "CommonJS",
"alwaysStrict": true,
"allowUmdGlobalAccess": true,
"experimentalDecorators": true,
"declaration": false,
"preserveSymlinks": true,
"allowSyntheticDefaultImports": true,
"importsNotUsedAsValues": "remove",
"keyofStringsOnly": true,
"esModuleInterop": true,
"ignoreDeprecations": "5.0",
"resolveJsonModule": true,
"preserveSymlinks": true,
"skipDefaultLibCheck": false,
"moduleResolution": "node",
"noEmitOnError": false,
"noUnusedLocals": false,
"noUnusedParameters": true,
"pretty": true,
"noImplicitThis": false,
"skipDefaultLibCheck": true,
"noStrictGenericChecks": true,
"noEmit": true,
"suppressExcessPropertyErrors": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"rootDir": "lib",
"baseUrl": ".",
"paths": {
"types": [
"./types/index.d.ts"
],
"types/internal": [
"./types/internal.d.ts"
],
"~state": [
"./lib/model/$.ts"
],
Expand Down Expand Up @@ -89,8 +93,20 @@
"./lib/log/*.ts",
"!./src/log/index.ts"
],
"~native": [
"./lib/utils/native.ts"
],
"~timer": [
"./lib/utils/timer.ts"
],
"~chars": [
"./lib/utils/chars.ts"
],
"~utils": [
"./lib/utils/utils.ts"
],
"~utils/*": [
"./lib/utils/*"
"./lib/utils/*",
]
}
}
Expand Down

0 comments on commit 4540b1b

Please sign in to comment.