Skip to content

Commit

Permalink
build: update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
tokebe committed Nov 3, 2023
1 parent f34e7f5 commit ced082c
Showing 1 changed file with 17 additions and 20 deletions.
37 changes: 17 additions & 20 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
{
"compilerOptions": {
"outDir": "./built",
"allowJs": true,
"target": "es2020",
"module": "commonjs",
"rootDir": "./src",
"declaration": true,
"esModuleInterop": true,
"strict": false,
"composite": true,
"noImplicitAny": false
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules",
"__tests__/"
]
}
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"outDir": "./built",
"allowJs": true,
"target": "es2020",
"module": "commonjs",
"rootDir": "./src",
"declaration": true,
"sourceMap": true,
"esModuleInterop": true,
"strict": false,
"composite": true,
"noImplicitAny": false
},
"include": ["./src/**/*"],
"exclude": ["node_modules", "__tests__/"]
}

0 comments on commit ced082c

Please sign in to comment.